| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 11 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 9 | public function getAddressFromZipcode($zipCode)  | 
            ||
| 10 |     { | 
            ||
| 11 |         $zipCode = preg_replace('/[^0-9]/im', '', $zipCode); | 
            ||
| 12 | |||
| 13 |         $endPoint = "https://ws.apicep.com/cep/{$zipCode}.json"; | 
            ||
| 14 | |||
| 15 | $content = file_get_contents($endPoint);  | 
            ||
| 16 | |||
| 17 | $response = json_decode($content);  | 
            ||
| 18 | |||
| 19 | return $this->normalizeResponse((array)$response);  | 
            ||
| 20 | }  | 
            ||
| 44 | }  |