1 | <?php |
||
19 | class Place |
||
20 | { |
||
21 | /** @var string */ |
||
22 | private $country; |
||
23 | |||
24 | /** @var string */ |
||
25 | private $state; |
||
26 | |||
27 | public function __construct(string $country = '', string $state = '') |
||
32 | |||
33 | public function getCountry(): string |
||
37 | |||
38 | public function getState(): string |
||
42 | |||
43 | public function toArray(): array |
||
50 | } |
||
51 |