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

doGetStats() protected méthode

{@inheritDoc}
protected doGetStats ( )
    protected function doGetStats()
    {
        // We return all the stats from all adapters
        $stats = [];
        foreach ($this->cacheProviders as $cacheProvider) {
            $stats[] = $cacheProvider->doGetStats();
        }
        return $stats;
    }