]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/output.php
fix function declaration errors according to PSR2 coding style guide
[nominatim.git] / lib / output.php
index 0a548500d23b19c0dc43eef361cb322da372c270..983e34406e0f3f6502562ff5f8121546ee8a8ee2 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-function formatOSMType($sType, $bIncludeExternal=true)
+function formatOSMType($sType, $bIncludeExternal = true)
 {
     if ($sType == 'N') return 'node';
     if ($sType == 'W') return 'way';
@@ -14,7 +14,7 @@ function formatOSMType($sType, $bIncludeExternal=true)
     return '';
 }
 
-function osmLink($aFeature, $sRefText=false)
+function osmLink($aFeature, $sRefText = false)
 {
     $sOSMType = formatOSMType($aFeature['osm_type'], false);
     if ($sOSMType) {
@@ -26,13 +26,13 @@ function osmLink($aFeature, $sRefText=false)
 function wikipediaLink($aFeature)
 {
     if ($aFeature['wikipedia']) {
-        list($sLanguage, $sArticle) = explode(':',$aFeature['wikipedia']);
+        list($sLanguage, $sArticle) = explode(':', $aFeature['wikipedia']);
         return '<a href="https://'.$sLanguage.'.wikipedia.org/wiki/'.urlencode($sArticle).'" target="_blank">'.$aFeature['wikipedia'].'</a>';
     }
     return '';
 }
 
-function detailsLink($aFeature, $sTitle=false)
+function detailsLink($aFeature, $sTitle = false)
 {
     if (!$aFeature['place_id']) return '';