public function CacheProvider::flushAll in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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\CacheCode
public function flushAll() {
return $this
->doFlush();
}