Neos\Flow\Mvc\Routing\RouterCachingService::initializeObject PHP 메소드

initializeObject() 공개 메소드

public initializeObject ( ) : void
리턴 void
    public function initializeObject()
    {
        // flush routing caches if in Development context & routing settings changed
        if ($this->objectManager->getContext()->isDevelopment() && $this->routeCache->get('routingSettings') !== $this->routingSettings) {
            $this->flushCaches();
            $this->routeCache->set('routingSettings', $this->routingSettings);
        }
    }