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