removeTag() публичный Метод

Removes the specified tag from this session.
public removeTag ( string $tag ) : void
$tag string The tag – must match be a valid cache frontend tag
Результат void
 /**
  * @test
  * @expectedException \Neos\Flow\Session\Exception\SessionNotStartedException
  */
 public function removeTagThrowsExceptionIfCalledOnNonStartedSession()
 {
     $session = new Session();
     $session->removeTag('MyTag');
 }