| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 50 | public function get(string $url, ?string $query = null): GoogleMapsResponse { |
||
| 51 | |||
| 52 | $client_params = $query ? [ |
||
| 53 | 'query' => $query |
||
| 54 | ] : null; |
||
| 55 | |||
| 56 | /** @var Response $res */ |
||
| 57 | $res = $this->client->request(GoogleMapsRequestMethodValues::GET, $url, $client_params); |
||
| 58 | |||
| 59 | return new GoogleMapsResponse($res); |
||
| 60 | } |
||
| 61 | } |