LMongo\Query\Builder::norWhereType PHP Method

norWhereType() public method

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