| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 81 | public function __construct($driverResponse) |
||
| 82 | { |
||
| 83 | $this->ip = $driverResponse['ip']; |
||
| 84 | $this->countryCode = $driverResponse['country_code']; |
||
| 85 | $this->countryName = $driverResponse['country_name']; |
||
| 86 | $this->regionCode = $driverResponse['region_code']; |
||
| 87 | $this->regionName = $driverResponse['region_name']; |
||
| 88 | $this->cityName = $driverResponse['city']; |
||
| 89 | $this->zipCode = $driverResponse['zip_code']; |
||
| 90 | $this->timeZone = $driverResponse['time_zone']; |
||
| 91 | $this->latitude = $driverResponse['latitude']; |
||
| 92 | $this->longitude = $driverResponse['longitude']; |
||
| 93 | $this->metroCode = $driverResponse['metro_code']; |
||
| 94 | } |
||
| 120 |