Doctrine\MongoDB\Aggregation\Stage\Match::not PHP Method

not() public method

You can create a new expression using the {@link Builder::matchExpr()} method.
See also: Expr::not()
See also: http://docs.mongodb.org/manual/reference/operator/not/
public not ( array | Expr $expression )
$expression array | Doctrine\MongoDB\Query\Expr
    public function not($expression)
    {
        $this->query->not($expression);
        return $this;
    }