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