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