1 | <?php |
||
14 | final class GeoLocation |
||
15 | { |
||
16 | /** |
||
17 | * @var float |
||
18 | */ |
||
19 | private $longitude; |
||
20 | |||
21 | /** |
||
22 | * @var float |
||
23 | */ |
||
24 | private $latitude; |
||
25 | |||
26 | public function __construct(float $longitude, float $latitude) |
||
31 | |||
32 | public function getLongitude(): float |
||
36 | |||
37 | public function getLatitude(): float |
||
41 | } |
||
42 |