getTags() public method

Returns the tags this session has been tagged with.
public getTags ( ) : array
return array The tags or an empty array if there aren't any
 /**
  * @test
  * @expectedException \Neos\Flow\Session\Exception\SessionNotStartedException
  */
 public function getTagsThrowsExceptionIfCalledOnNonStartedSession()
 {
     $session = new Session();
     $session->getTags();
 }