Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | 1 | public function getIpInfo($ipadress) |
|
19 | { |
||
20 | 1 | if (isset($ipadress)) { |
|
21 | 1 | $location = 'http://api.ipstack.com/' . $ipadress . '?access_key=' . $this->apiKey; |
|
22 | 1 | $locationJSON = file_get_contents($location); |
|
23 | 1 | $locationJSONObject = json_decode($locationJSON, true); |
|
24 | 1 | return $locationJSONObject; |
|
25 | } |
||
28 |