Doctrine\Common\Cache\CacheProvider::doGetStats PHP Method

doGetStats() abstract protected method

Retrieves cached information from the data store.
Since: 2.2
abstract protected doGetStats ( ) : array | null
return array | null An associative array with server's statistics if available, NULL otherwise.
    protected abstract function doGetStats();

Usage Example

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