query = $query; $this->suggestion = $suggestion; $this->hits = (int) $hits; } /** * The query related to the suggestion * * @return string */ public function getQuery() { return $this->query; } /** * The actual suggestion * * @return string */ public function getSuggestion() { return $this->suggestion; } /** * The number of hits * * @return int */ public function getHits() { return $this->hits; } }