| 1 | <?php |
||
| 7 | class Location |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var float |
||
| 11 | */ |
||
| 12 | protected $latitude; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var float |
||
| 16 | */ |
||
| 17 | protected $longitude; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Location constructor. |
||
| 21 | * |
||
| 22 | * @param float $latitude |
||
| 23 | * @param float $longitude |
||
| 24 | */ |
||
| 25 | public function __construct($latitude, $longitude) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return float |
||
| 33 | */ |
||
| 34 | public function getLatitude() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return float |
||
| 41 | */ |
||
| 42 | public function getLongitude() |
||
| 46 | } |
||
| 47 |