예제 #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();
 }