Total Complexity | 5 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class BoundingBoxPosition |
||
14 | { |
||
15 | public const MIN_LONGITUDE = -360; |
||
16 | public const MAX_LONGITUDE = 360; |
||
17 | |||
18 | public const MIN_LATITUDE = -90; |
||
19 | public const MAX_LATITUDE = 90; |
||
20 | |||
21 | /** |
||
22 | * @throws InvalidBoundingBoxPositionException |
||
23 | */ |
||
24 | 5 | public function __construct(public float $longitude, public float $latitude) |
|
35 |