Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class DynamicGeographic2D extends CoordinateReferenceSystem |
||
15 | { |
||
16 | public function __construct( |
||
17 | int $epsgCode, |
||
18 | CoordinateSystem $coordinateSystem, |
||
19 | Datum $datum |
||
20 | ) { |
||
21 | $this->epsgCode = $epsgCode; |
||
22 | $this->coordinateSystem = $coordinateSystem; |
||
23 | $this->datum = $datum; |
||
24 | } |
||
25 | |||
26 | public function getEpsgCode(): int |
||
27 | { |
||
28 | return $this->epsgCode; |
||
29 | } |
||
30 | |||
31 | public function getCoordinateSystem(): CoordinateSystem |
||
32 | { |
||
33 | return $this->coordinateSystem; |
||
34 | } |
||
35 | |||
36 | public function getDatum(): Datum |
||
39 | } |
||
40 | } |
||
41 |