1 | <?php |
||
26 | class Variable extends Response |
||
27 | { |
||
28 | /** |
||
29 | * @var string The value of the variable requested |
||
30 | */ |
||
31 | private $value; |
||
32 | |||
33 | /** |
||
34 | * @return string The value of the variable requested |
||
35 | */ |
||
36 | public function getValue() |
||
40 | |||
41 | /** |
||
42 | * @param string $response |
||
43 | */ |
||
44 | public function __construct($response) |
||
50 | |||
51 | /** |
||
52 | * @return string |
||
53 | */ |
||
54 | public function __toString() |
||
58 | |||
59 | } |
||
60 |