Doctrine\Common\Cache\CacheProvider::doFlush PHP Метод

doFlush() абстрактный защищенный Метод

Flushes all cache entries.
abstract protected doFlush ( ) : boolean
Результат boolean TRUE if the cache entries were successfully flushed, FALSE otherwise.
    protected abstract function doFlush();

Usage Example

 /**
  * @inheritdoc
  */
 protected function doFlush()
 {
     return $this->cacheProvider->doFlush();
 }