-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBuiltinMock_Returner_SetValue.php
50 lines (45 loc) · 1.11 KB
/
BuiltinMock_Returner_SetValue.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/**
* Will return the set value on every call
*/
class BuiltinMock_Returner_SetValue extends BuiltinMock_Function
{
/**
* @var mixed
*/
protected $mValue;
/////////////////////////////////////////////////////////////////////////////
// PUBLIC //////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////
/**
* Create the object and set the initial value
*
* @param mixed $mValue required=true
*/
public function __construct($mValue)
{
$this->setValue($mValue);
}
/**
* Return the set value
*
* @return mixed
*/
public function mock($aArgs)
{
return $this->mValue;
}
/////////////////////////////////////////////////////////////////////////////
// PROTECTED ///////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////
/**
* Set the value that will be returned on calls to $this->mock()
*
* @param mixed $mValue required=true
*/
protected function setValue($mValue)
{
$this->mValue = $mValue;
}
}
?>