コード例 #1
0
ファイル: Builder.php プロジェクト: cosmow/riak
 /**
  * Remove all elements matching the given value or expression from the
  * current array field.
  *
  * @see Expr::pull()
  * @see http://docs.mongodb.org/manual/reference/operator/pull/
  * @param mixed|Expr $valueOrExpression
  * @return self
  */
 public function pull($valueOrExpression)
 {
     $this->expr->pull($valueOrExpression);
     return $this;
 }