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