예제 #1
0
파일: Cache.php 프로젝트: Kinetical/Kinesis
 function offsetUnset($offset)
 {
     parent::offsetUnset($offset);
     if ($this->Parameters->exists('hash')) {
         $offset = $this->hash($offset);
     }
     $this->remove($offset);
 }
예제 #2
0
 public function offsetUnset($offset)
 {
     $this->dirty();
     parent::offsetUnset($offset);
 }