| 1 | <?php |
||
| 14 | final class Geo |
||
| 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 | /** |
||
| 43 | * @return Geo |
||
| 44 | */ |
||
| 45 | public static function fromApi(array $data): self |
||
| 52 | } |
||
| 53 |