Neos\Neos\Routing\Cache\RouteCacheFlusher::commit PHP Méthode

commit() public méthode

Flush caches according to the previously registered node changes.
public commit ( ) : void
Résultat void
    public function commit()
    {
        foreach ($this->tagsToFlush as $tag) {
            $this->routeCachingService->flushCachesByTag($tag);
        }
        $this->tagsToFlush = array();
    }