3 namespace Nominatim\Token;
6 * A standard word token.
10 /// Database word id, if applicable.
12 /// Number of appearances in the database.
13 public $iSearchNameCount;
14 /// Normalised version of the partial word.
17 public function __construct($iId, $sToken, $iSearchNameCount)
20 $this->sToken = $sToken;
21 $this->iSearchNameCount = $iSearchNameCount;
24 public function debugInfo()
30 'count' => $this->iSearchNameCount