Example #1
0
 protected function _clearCache($type = null)
 {
     foreach (Cache::read($this->cachePrefix()) as $key => $value) {
         Cache::delete($key);
     }
     return parent::_clearCache();
 }