| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 87 | public function getData() |
||
| 88 | { |
||
| 89 | $res = $this->curl->getData($this->url); |
||
| 90 | |||
| 91 | $res = [ |
||
| 92 | "city" => $res["city"] ?? null, |
||
| 93 | "country_name" => $res["country_name"] ?? null, |
||
| 94 | "longitude" => $res["longitude"] ?? null, |
||
| 95 | "latitude" => $res["latitude"] ?? null, |
||
| 96 | ]; |
||
| 97 | |||
| 98 | return $res; |
||
| 99 | } |
||
| 101 |