コード例 #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
ファイル: Persistent.php プロジェクト: Kinetical/Kinesis
 public function offsetUnset($offset)
 {
     $this->dirty();
     parent::offsetUnset($offset);
 }