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