LMongo\Query\Builder::andWhereSize PHP Метод

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

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