コード例 #1
0
ファイル: Builder.php プロジェクト: cosmow/riak
 /**
  * Add an $and clause to the current query.
  *
  * You can create a new expression using the {@link Builder::expr()} method.
  *
  * @see Expr::addAnd()
  * @see http://docs.mongodb.org/manual/reference/operator/and/
  * @param array|Expr $expression
  * @return self
  */
 public function addAnd($expression)
 {
     $this->expr->addAnd($expression);
     return $this;
 }