Exemple #1
0
 public function offsetUnset($index)
 {
     $index = (string) $index;
     if (isset($this->callbacks[$index])) {
         unset($this->callbacks[$index]);
         if (isset($this->results[$index])) {
             unset($this->results[$index]);
         }
     } else {
         parent::offsetUnset($index);
     }
 }