| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | 8 | public function geocode($address, $region = '', $outputFormat = 'json') |
|
| 20 | { |
||
| 21 | 8 | if ($this->validateOutputFormat($outputFormat) !== true) { |
|
| 22 | 1 | throw new \Exception("'{$outputFormat}' is not a valid format"); |
|
| 23 | } |
||
| 24 | |||
| 25 | 7 | return file_get_contents($this->generateRequestUrl($address, $region, $outputFormat)); |
|
| 26 | } |
||
| 27 | |||
| 86 |