1 | <?php |
||
17 | class QueryParameter implements QueryParameterInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var $name |
||
21 | */ |
||
22 | private $name; |
||
23 | |||
24 | /** |
||
25 | * @var $value |
||
26 | */ |
||
27 | private $value; |
||
28 | |||
29 | /** |
||
30 | * @param string $name |
||
31 | */ |
||
32 | 1 | public function __construct($name) |
|
36 | |||
37 | /** |
||
38 | * @param mixed $value |
||
39 | */ |
||
40 | 1 | public function setValue($value) |
|
44 | |||
45 | /** |
||
46 | * @inheritdoc |
||
47 | */ |
||
48 | 1 | public function getName() |
|
52 | |||
53 | /** |
||
54 | * @inheritdoc |
||
55 | */ |
||
56 | 1 | public function getValue() |
|
60 | } |