예제 #1
0
 /**
  * Adds value to the array only if it's not in the array already.
  *
  * @param mixed $value
  * @return QueryProxy this instance
  */
 public function addToSet($value)
 {
     $this->queryChanged = true;
     return parent::addToSet($value);
 }