public function CacheProvider::flushAll

Deletes all cache entries.

Return value

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

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Cache/CacheProvider.php, line 113

Class

CacheProvider
Base class for cache provider implementations.

Namespace

Doctrine\Common\Cache

Code

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