LMongo\Query\Builder::andWhereType PHP Method

andWhereType() public method

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