Neos\Neos\Fusion\Cache\ContentCacheFlusher::shutdownObject PHP Метод

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

Flush caches according to the previously registered node changes.
public shutdownObject ( ) : void
Результат void
    public function shutdownObject()
    {
        if ($this->tagsToFlush !== array()) {
            foreach ($this->tagsToFlush as $tag => $logMessage) {
                $affectedEntries = $this->contentCache->flushByTag($tag);
                if ($affectedEntries > 0) {
                    $this->systemLogger->log(sprintf('Content cache: Removed %s entries %s', $affectedEntries, $logMessage), LOG_DEBUG);
                }
            }
        }
    }