3 namespace Nominatim\Token;
6 * A standard word token.
11 // If true, the word may represent only part of a place name.
13 // Number of appearances in the database.
14 public $iSearchNameCount;
16 public function __construct($iId, $bPartial, $iSearchNameCount)
19 $this->bPartial = $bPartial;
20 $this->iSearchNameCount = $iSearchNameCount;
23 public function debugInfo()
29 'partial' => $this->bPartial,
30 'count' => $this->iSearchNameCount