LMongo\Query\Builder::orWhereSize PHP Method

orWhereSize() public method

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