public $iId;
/// Number of appearances in the database.
public $iSearchNameCount;
+ /// Normalised version of the partial word.
+ public $sToken;
- public function __construct($iId, $iSearchNameCount)
+ public function __construct($iId, $sToken, $iSearchNameCount)
{
$this->iId = $iId;
+ $this->sToken = $sToken;
$this->iSearchNameCount = $iSearchNameCount;
}