3 namespace Nominatim\Token;
6 * A standard word token.
10 /// Database word id, if applicable.
12 /// If true, the word may represent only part of a place name.
14 /// Number of appearances in the database.
15 public $iSearchNameCount;
17 public function __construct($iId, $bPartial, $iSearchNameCount)
20 $this->bPartial = $bPartial;
21 $this->iSearchNameCount = $iSearchNameCount;
24 public function debugInfo()
30 'partial' => $this->bPartial,
31 'count' => $this->iSearchNameCount