| 1 | <?php |
||
| 7 | class Location implements LocationInterface |
||
| 8 | { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @var CountryInterface |
||
| 12 | */ |
||
| 13 | private $country; |
||
| 14 | |||
| 15 | 12 | public function __construct(CountryInterface $country) |
|
| 19 | |||
| 20 | /** |
||
| 21 | * @return CountryInterface |
||
| 22 | */ |
||
| 23 | 1 | public function getCountry() : CountryInterface |
|
| 27 | |||
| 28 | /* LocationInterface */ |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return string |
||
| 32 | */ |
||
| 33 | 1 | public function getLocation() : string |
|
| 37 | } |
||
| 38 |