예제 #1
0
파일: Operator.php 프로젝트: cosmow/riak
 /**
  * Evaluates a boolean and returns the opposite boolean value.
  *
  * @see http://docs.mongodb.org/manual/reference/operator/aggregation/not/
  * @see Expr::not
  * @param mixed|Expr $expression
  * @return self
  */
 public function not($expression)
 {
     $this->expr->not($expression);
     return $this;
 }