]> git.openstreetmap.org Git - nominatim.git/blobdiff - utils/warm.php
fix function declaration errors according to PSR2 coding style guide
[nominatim.git] / utils / warm.php
index 89225426c90d5fb8049736363cedfcf393926f94..a7a6ada649bab21f36a797a5e04df7b29610fa6d 100755 (executable)
@@ -39,8 +39,11 @@ if (!$aResult['search-only']) {
         if ($bVerbose) echo "$fLat, $fLon = ";
         $aLookup = $oReverseGeocode->lookup($fLat, $fLon);
         if ($aLookup && $aLookup['place_id']) {
-            $aDetails = $oPlaceLookup->lookup((int)$aLookup['place_id'],
-                                              $aLookup['type'], $aLookup['fraction']);
+            $aDetails = $oPlaceLookup->lookup(
+                (int)$aLookup['place_id'],
+                $aLookup['type'],
+                $aLookup['fraction']
+            );
             if ($bVerbose) echo $aDetails['langaddress']."\n";
         } else {
             echo ".";