Passed
Pull Request — master (#78)
by guillaume
08:26
created
app/Src/UseCases/Domain/System/GetDepartmentFromPostalCodeImpl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         $content = json_decode($response->getBody()->getContents(), true);
24 24
 
25 25
         $features = $content['features'];
26
-        if(isset($features) && !empty($features)){
26
+        if (isset($features) && !empty($features)) {
27 27
             $feature = $features[0];
28 28
             $coordinates = $feature['geometry']['coordinates'];
29 29
             $departmentNumber = explode(',', $feature['properties']['context'])[0];
Please login to merge, or discard this patch.