| 1 | <?php |
||
| 8 | class Coordinates |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var array |
||
| 12 | */ |
||
| 13 | protected $options; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param array $options |
||
| 17 | */ |
||
| 18 | public function __construct($options) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return float |
||
| 30 | */ |
||
| 31 | public function getLat() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @return float |
||
| 38 | */ |
||
| 39 | public function getLong() |
||
| 43 | } |
||
| 44 |