Pheasant\Query\Query::orWhere PHP Method

orWhere() public method

Adds an extra criteria to the where clause with an OR
public orWhere ( $sql = null, $params = [] )
    public function orWhere($sql = null, $params = array())
    {
        if (!isset($this->_where)) {
            $this->_where = new Criteria();
        }
        $this->_where->or(new Criteria($sql, $params));
        return $this;
    }