]> git.openstreetmap.org Git - nominatim.git/commitdiff
fix CodeSniffer offences
authorSarah Hoffmann <lonvia@denofr.de>
Fri, 13 Oct 2017 21:11:09 +0000 (23:11 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Fri, 13 Oct 2017 21:11:09 +0000 (23:11 +0200)
lib/Geocode.php
lib/Phrase.php
lib/SearchDescription.php

index f7f97593a8a3b01b2e999e97aafe622c93569063..be543012bf76626f95e3e7cc620021b7bf424c7f 100644 (file)
@@ -1275,8 +1275,7 @@ class Geocode
 
             $aResult['name'] = $aResult['langaddress'];
 
-            if ($oCtx->hasNearPoint())
-            {
+            if ($oCtx->hasNearPoint()) {
                 $aResult['importance'] = 0.001;
                 $aResult['foundorder'] = $aResult['addressimportance'];
             } else {
index 0fe1d3132ce6f8346fa7fdac77ced5379e877f3b..b39079d94eafc38ddf11f08a1d2732053d5fd455 100644 (file)
@@ -9,7 +9,7 @@ namespace Nominatim;
  */
 class Phrase
 {
-    CONST MAX_DEPTH = 7;
+    const MAX_DEPTH = 7;
 
     // Complete phrase as a string.
     private $sPhrase;
@@ -113,4 +113,4 @@ class Phrase
 
         return $aResult;
     }
-};
+}
index 1325a46335396401e975e72232440b3cf41d7be9..eba5f6a93262e4cf0f50d8a262832158935c5897 100644 (file)
@@ -319,11 +319,11 @@ class SearchDescription
     /**
      * Derive new searches by adding a partial term to the existing search.
      *
-     * @param mixed[] $aSearchTerm          Description of the token.
-     * @param bool    $bStructuredPhrases   True if the search is structured.
-     * @param integer $iPhrase              Number of the phrase the token is in.
-     * @param array[] $aFullTokens          List of full term tokens with the
-     *                                      same name.
+     * @param mixed[] $aSearchTerm        Description of the token.
+     * @param bool    $bStructuredPhrases True if the search is structured.
+     * @param integer $iPhrase            Number of the phrase the token is in.
+     * @param array[] $aFullTokens        List of full term tokens with the
+     *                                    same name.
      *
      * @return SearchDescription[] List of derived search descriptions.
      */