Neos\Fusion\Core\Cache\RuntimeContentCache::flushTags PHP 메소드

flushTags() 보호된 메소드

Resets the assigned tags, returning the previously set tags.
protected flushTags ( ) : array
리턴 array
    protected function flushTags()
    {
        $tags = array_keys($this->tags);
        $this->tags = [];
        return $tags;
    }