| 1 | <?php |
||
| 8 | class Location |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var array |
||
| 12 | */ |
||
| 13 | protected $options; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param array $options |
||
| 17 | */ |
||
| 18 | public function __construct($options) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | public function getName() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return Coordinates |
||
| 43 | */ |
||
| 44 | public function getCoordinates() |
||
| 48 | } |
||
| 49 |