addNor() public méthode

Add one or more $nor clauses to the current query.
See also: Builder::addNor()
See also: http://docs.mongodb.org/manual/reference/operator/nor/
public addNor ( array | Expr $expression )
$expression array | Expr
Exemple #1
0
 /**
  * Add a $nor clause to the current query.
  *
  * You can create a new expression using the {@link Builder::expr()} method.
  *
  * @see Expr::addNor()
  * @see http://docs.mongodb.org/manual/reference/operator/nor/
  * @param array|Expr $expression
  * @return self
  */
 public function addNor($expression)
 {
     $this->expr->addNor($expression);
     return $this;
 }
Exemple #2
0
 /**
  * Add one or more $nor clauses to the current query.
  *
  * You can create a new expression using the {@link Builder::matchExpr()}
  * method.
  *
  * @see Expr::addNor()
  * @see http://docs.mongodb.org/manual/reference/operator/nor/
  * @param array|Expr $expression
  * @return $this
  */
 public function addNor($expression)
 {
     $this->query->addNor(...func_get_args());
     return $this;
 }