Doctrine\Common\Cache\ChainCache::doFlush PHP Méthode

doFlush() protected méthode

{@inheritDoc}
protected doFlush ( )
    protected function doFlush()
    {
        $flushed = true;
        foreach ($this->cacheProviders as $cacheProvider) {
            $flushed = $cacheProvider->doFlush() && $flushed;
        }
        return $flushed;
    }