1 | <?php |
||
17 | class ParameterCollection implements ParameterCollectionInterface |
||
18 | { |
||
19 | private $parameters; |
||
20 | |||
21 | /** |
||
22 | * @param array $parameters |
||
23 | */ |
||
24 | public function __construct(array $parameters = []) |
||
28 | |||
29 | /** |
||
30 | * @inheritdoc |
||
31 | */ |
||
32 | public function __clone() |
||
36 | |||
37 | /** |
||
38 | * @return QueryParameterInterface[] |
||
39 | */ |
||
40 | private function cloneParameters() |
||
50 | |||
51 | /** |
||
52 | * @inheritdoc |
||
53 | */ |
||
54 | public function toArray() |
||
58 | |||
59 | /** |
||
60 | * @inheritdoc |
||
61 | */ |
||
62 | public function getParameter($name) |
||
70 | } |