LMongo\Query\Builder::andWhereSize PHP Method

andWhereSize() public method

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