Exemple #1
0
 /**
  * Deletes all caches Responses from all attached decorators.
  * 
  * Beware that if a decorator uses a cache which is used by other parts of the
  * system, or other systems. This will delete ALL cache entries, flushing the cache.
  *
  *     // Delete all responses from this decorator
  *     $decorator->delete_all();
  *
  * @return  boolean
  */
 public function delete_all()
 {
     return $this->_cache->delete_all();
 }
Exemple #2
0
 public function delete_all()
 {
     return parent::delete_all();
 }