Esempio n. 1
0
 /**
  * Unset an item from the array
  *
  * @param   int     $offset
  * @return  void
  */
 public function offsetUnset($offset)
 {
     apc_delete($this->getNamespace() . '-class_' . $offset);
     if (parent::offsetExists($offset)) {
         parent::offsetUnset($offset);
     }
 }