Neos\Fusion\Core\Cache\RuntimeContentCache::flushTags PHP Method

flushTags() protected method

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