LMongo\Query\Builder::andWhereType PHP 메소드

andWhereType() 공개 메소드

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