コード例 #1
0
ファイル: Builder.php プロジェクト: cosmow/riak
 /**
  * Specify $ne criteria for the current field.
  *
  * @see Expr::notEqual()
  * @see http://docs.mongodb.org/manual/reference/operator/ne/
  * @param mixed $value
  * @return self
  */
 public function notEqual($value)
 {
     $this->expr->notEqual($value);
     return $this;
 }
コード例 #2
0
ファイル: Match.php プロジェクト: cosmow/riak
 /**
  * Specify $ne criteria for the current field.
  *
  * @see Expr::notEqual()
  * @see http://docs.mongodb.org/manual/reference/operator/ne/
  * @param mixed $value
  * @return self
  */
 public function notEqual($value)
 {
     $this->query->notEqual($value);
     return $this;
 }