DB do framework Zend: OR em vez do operador AND

tem essa consulta zend:

$select = $this->_table
               ->select()
               ->where('title LIKE  ?', '%'.$searchWord.'%')
               ->where('description LIKE  ?', '%'.$searchWord.'%')
               ->where('verified=1 AND activated=1');

Em outras palavras, parece com:

SELECT `some_table`.* FROM `some_table` WHERE (title LIKE '%nice house%') AND (description LIKE '%nice house%') AND (verified=1 AND activated=1)

Se eu tiver algumas frases AND, zend conectá-lo através do operador AND. Como posso conectá-lo ao operador OR? Porque eu preciso de:

...(title LIKE '%nice house%') OR (description LIKE '%nice house%')...

Sua ajuda seria apreciada.

questionAnswers(3)

yourAnswerToTheQuestion