예제 #1
0
 /**
  * Truncate all cache
  *
  * @return bool|void Returns true on success or false on failure. If use CacheFile, returns void.
  */
 function truncate()
 {
     if (!$this->handler) {
         return false;
     }
     return $this->handler->truncate();
 }