You are here

public function CacheProvider::flushAll in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php \Doctrine\Common\Cache\CacheProvider::flushAll()

Flushes all cache entries, globally.

Return value

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

Overrides FlushableCache::flushAll

File

vendor/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();
}