]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/TokenWord.php
Rework word set computation
[nominatim.git] / lib / TokenWord.php
index 92940c104a07d06fc4274bdf4cd5390640688a30..54622cbcb081c05cd3bd3b67d663ef938455763c 100644 (file)
@@ -7,10 +7,11 @@ namespace Nominatim\Token;
  */
 class Word
 {
+    /// Database word id, if applicable.
     public $iId;
-    // If true, the word may represent only part of a place name.
+    /// If true, the word may represent only part of a place name.
     public $bPartial;
-    // Number of appearances in the database.
+    /// Number of appearances in the database.
     public $iSearchNameCount;
 
     public function __construct($iId, $bPartial, $iSearchNameCount)