コード例 #1
0
ファイル: Storage.php プロジェクト: activecollab/resistance
 /**
  * Clear the storage
  */
 public function clear()
 {
     foreach ($this->getKeyspace() as $key) {
         $this->connection->del($key);
     }
 }