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