touch() public méthode

Updates the last activity time to "now".
public touch ( ) : void
Résultat void
 /**
  * @test
  * @expectedException \Neos\Flow\Session\Exception\SessionNotStartedException
  */
 public function touchThrowsExceptionIfCalledOnNonStartedSession()
 {
     $session = new Session();
     $session->touch();
 }