| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | 33 | public function __construct( |
|
| 24 | string $countryCode, |
||
| 25 | string $countryName, |
||
| 26 | string $regionName, |
||
| 27 | string $city, |
||
| 28 | float $latitude, |
||
| 29 | float $longitude, |
||
| 30 | string $timeZone |
||
| 31 | ) { |
||
| 32 | 33 | $this->countryCode = $countryCode; |
|
| 33 | 33 | $this->countryName = $countryName; |
|
| 34 | 33 | $this->regionName = $regionName; |
|
| 35 | 33 | $this->city = $city; |
|
| 36 | 33 | $this->latitude = $latitude; |
|
| 37 | 33 | $this->longitude = $longitude; |
|
| 38 | 33 | $this->timeZone = $timeZone; |
|
| 39 | } |
||
| 81 |