| 1 | <?php |
||
| 9 | class CityCount implements GetParameterInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var int |
||
| 13 | */ |
||
| 14 | protected $cnt; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * CityCount constructor. |
||
| 18 | * |
||
| 19 | * @param int $cnt |
||
| 20 | */ |
||
| 21 | public function __construct(int $cnt = 10) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public function getGetParameterValue(): string |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | */ |
||
| 37 | public function getGetParameterName(): string |
||
| 41 | } |
||
| 42 |