| 1 | <?php |
||
| 9 | class CityIds implements GetParameterInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var CityId[] |
||
| 13 | */ |
||
| 14 | protected $cityIds; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * CityIds constructor. |
||
| 18 | * |
||
| 19 | * @param CityId[] $cityIds |
||
| 20 | */ |
||
| 21 | public function __construct(array $cityIds = []) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public function getGetParameterValue(): string |
||
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | */ |
||
| 42 | public function getGetParameterName(): string |
||
| 46 | } |
||
| 47 |