コード例 #1
0
ファイル: Item.php プロジェクト: yakamoz-fang/concrete
 /**
  * This clears out any locks that are present if this Item is prematurely destructed.
  */
 public function __destruct()
 {
     if (isset($this->stampedeRunning) && $this->stampedeRunning == true) {
         $spkey = $this->key;
         $spkey[0] = 'sp';
         $this->driver->clear($spkey);
     }
 }
コード例 #2
0
ファイル: StashAdapter.php プロジェクト: rtheunissen/cache
 /**
  * {@inheritdoc}
  */
 public function clear()
 {
     return $this->cache->clear();
 }