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

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

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