1 | <?php |
||
14 | final class Country |
||
15 | { |
||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | private $code; |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | private $name; |
||
25 | |||
26 | public function __construct(string $code, string $name) |
||
31 | |||
32 | public function getCode(): string |
||
36 | |||
37 | public function getName(): string |
||
41 | |||
42 | /** |
||
43 | * @return Country |
||
44 | */ |
||
45 | public static function fromApi(array $data): self |
||
52 | } |
||
53 |