Neos\Flow\Session\TransientSession::getTags PHP 메소드

getTags() 공개 메소드

Returns the tags this session has been tagged with.
public getTags ( ) : array
리턴 array The tags or an empty array if there aren't any
    public function getTags()
    {
        if ($this->started !== true) {
            throw new Exception\SessionNotStartedException('The session has not been started yet.', 1422551050);
        }
        return array_keys($this->tags);
    }