コード例 #1
0
ファイル: Storage.php プロジェクト: mimmi20/wurfl
 /**
  * Removes all entries from the Persistence Provider
  *
  * @return bool
  */
 public function clear()
 {
     return $this->adapter->flush();
 }
コード例 #2
0
 /**
  * Flush the whole storage
  *
  * @return bool
  */
 public function flush()
 {
     return $this->cache->flush();
 }