You are here

public function CacheProvider::flushAll in Plug 7

Flushes all cache entries.

Return value

boolean TRUE if the cache entries were successfully flushed, FALSE otherwise.

Overrides FlushableCache::flushAll

File

lib/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php, line 137

Class

CacheProvider
Base class for cache provider implementations.

Namespace

Doctrine\Common\Cache

Code

public function flushAll() {
  return $this
    ->doFlush();
}