| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 16 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 8 | 
| CRAP Score | 1 | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 23 | 18 | 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 | 18 | $this->countryCode = $countryCode;  | 
            |
| 33 | 18 | $this->countryName = $countryName;  | 
            |
| 34 | 18 | $this->regionName = $regionName;  | 
            |
| 35 | 18 | $this->city = $city;  | 
            |
| 36 | 18 | $this->latitude = $latitude;  | 
            |
| 37 | 18 | $this->longitude = $longitude;  | 
            |
| 38 | 18 | $this->timeZone = $timeZone;  | 
            |
| 39 | }  | 
            ||
| 81 |