Esempio n. 1
0
 /**
  * ArrayAccess interface method
  * Unset character at $offset position
  *
  * @param integer $offset
  */
 public function offsetUnset($offset)
 {
     unset($this->value[$offset]);
     if ($this->trace) {
         $this->trace = false;
         $this->container->processUpdate();
     }
 }