Ejemplo n.º 1
0
 /**
  * Checks if a search query is set and if this query validates
  *
  * @throws QueryValidationException
  */
 public function validate()
 {
     if (!$this->searchQuery instanceof SearchQuery) {
         throw new QueryValidationException('Must set a search query.');
     }
     $this->searchQuery->validate();
 }