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

addNor() public method

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