| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | 1 | public function __construct( |
|
| 38 | string $name = null, |
||
| 39 | string $state = null, |
||
| 40 | string $country = null, |
||
| 41 | float $lat = null, |
||
| 42 | float $lng = null |
||
| 43 | ) |
||
| 44 | { |
||
| 45 | 1 | $this->name = $name; |
|
| 46 | 1 | $this->state = $state; |
|
| 47 | 1 | $this->country = $country; |
|
| 48 | |||
| 49 | 1 | parent::__construct($lat, $lng); |
|
| 50 | 1 | } |
|
| 51 | } |
||
| 52 |