X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/f29c7bf910ea36fdc2cc70ba63c6dcece79c7b6c..c5109d39d029fb013286e4ff4220e200267caa09:/lib/TokenWord.php diff --git a/lib/TokenWord.php b/lib/TokenWord.php index 92940c10..54622cbc 100644 --- a/lib/TokenWord.php +++ b/lib/TokenWord.php @@ -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)