LMongo\Query\Builder::orWhereAll PHP Method

orWhereAll() public method

Add an "$all comparison operation" clause to logical $or operation.
public orWhereAll ( string $column, array $value ) : LMongo\Query\Builder
$column string
$value array
return LMongo\Query\Builder
    public function orWhereAll($column, array $value)
    {
        return $this->where($column, array('$all' => array_values($value)), '$or');
    }
Builder