Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
63 | public function __construct($driverResponse) |
||
64 | { |
||
65 | $this->ip = $driverResponse['ip'] ?? $driverResponse['IPv4']; |
||
66 | $this->countryCode = $driverResponse['country_code']; |
||
67 | $this->countryName = $driverResponse['country_name']; |
||
68 | $this->regionName = $driverResponse['state']; |
||
69 | $this->cityName = $driverResponse['city']; |
||
70 | $this->zipCode = $driverResponse['postal']; |
||
71 | $this->latitude = $driverResponse['latitude']; |
||
72 | $this->longitude = $driverResponse['longitude']; |
||
73 | } |
||
99 |