Neos\Cache\Frontend\AbstractFrontend::initializeObject PHP Метод

initializeObject() публичный Метод

The backend is connected with this frontend in initializeObject(), not in __construct(), because the Cache Factory needs an opportunity to register the cache before the backend's setCache() method is called. See CacheFactory::create() for details. A backend (for example the SimpleFileBackend) may rely on the cache already being registered at the CacheManager when its setCache() method is called.
public initializeObject ( ) : void
Результат void
    public function initializeObject()
    {
        // FIXME: This can be removed in next major, since the Backend gets the Frontend set in the cache factory now.
        $this->backend->setCache($this);
    }