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 | * @inheritdoc |
||
39 | */ |
||
40 | 1 | public function setValue($value) |
|
46 | |||
47 | /** |
||
48 | * @inheritdoc |
||
49 | */ |
||
50 | 1 | public function getName() |
|
54 | |||
55 | /** |
||
56 | * @inheritdoc |
||
57 | */ |
||
58 | 1 | public function getValue() |
|
62 | } |