Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
16 | 12 | public function __construct(float $latitude, float $longitude, float $accuracyMeters) |
|
17 | { |
||
18 | 12 | $this->validateLatitude($latitude); |
|
19 | 10 | $this->validateLongitude($longitude); |
|
20 | 8 | $this->longitude = $longitude; |
|
21 | 8 | $this->latitude = $latitude; |
|
22 | 8 | $this->accuracyMeters = $accuracyMeters; |
|
23 | 8 | } |
|
24 | |||
63 |