예제 #1
0
 /**
  * Removes all occurrences of each value in value_array from field, if
  * field is an array. If field is present but is not an array, an error
  * condition is raised.
  *
  * @param array $valueArray
  * @return QueryProxy this instance
  */
 public function pullAll(array $valueArray)
 {
     $this->queryChanged = true;
     parent::pullAll($valueArray);
 }