instantiateCache() защищенный Метод

protected instantiateCache ( string $cacheIdentifier, string $cacheObjectName, Neos\Cache\Backend\BackendInterface $backend ) : Neos\Cache\Frontend\FrontendInterface
$cacheIdentifier string
$cacheObjectName string
$backend Neos\Cache\Backend\BackendInterface
Результат Neos\Cache\Frontend\FrontendInterface
 /**
  * {@inheritdoc}
  */
 protected function instantiateCache($cacheIdentifier, $cacheObjectName, $backend)
 {
     $cache = parent::instantiateCache($cacheIdentifier, $cacheObjectName, $backend);
     if (is_callable([$cache, 'initializeObject'])) {
         $cache->initializeObject(ObjectManagerInterface::INITIALIZATIONCAUSE_CREATED);
     }
     return $cache;
 }