Cake\Database\Query::orHaving PHP Метод

orHaving() публичный Метод

Connects any previously defined set of conditions to the provided list using the OR operator in the HAVING clause. This method operates in exactly the same way as the method orWhere() does. Please refer to its documentation for an insight on how to using each parameter.
См. также: Cake\Database\Query::orWhere()
public orHaving ( string | array | Cake\Database\ExpressionInterface | callable $conditions, array $types = [] )
$conditions string | array | Cake\Database\ExpressionInterface | callable The OR conditions for HAVING.
$types array associative array of type names used to bind values to query.
    public function orHaving($conditions, $types = [])
    {
        $this->_conjugate('having', $conditions, 'OR', $types);
        return $this;
    }