Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
6 | class Point |
||
7 | { |
||
8 | private $latitude; |
||
9 | private $longitude; |
||
10 | |||
11 | 1 | public function __construct($longitude, $latitude) |
|
12 | { |
||
13 | 1 | $this->latitude = $latitude; |
|
14 | 1 | $this->longitude = $longitude; |
|
15 | 1 | } |
|
16 | |||
17 | 1 | public function getLatitude() |
|
18 | { |
||
19 | 1 | return $this->latitude; |
|
20 | } |
||
21 | |||
22 | 1 | public function getLongitude() |
|
25 | } |
||
26 | } |