mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-15 19:07:58 +00:00
fix function declaration errors according to PSR2 coding style guide
This commit is contained in:
@@ -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 ".";
|
||||
|
||||
Reference in New Issue
Block a user