Neos\Flow\Tests\Unit\Session\SessionTest::getLastActivityTimestampThrowsExceptionIfCalledOnNonStartedSession PHP Method

getLastActivityTimestampThrowsExceptionIfCalledOnNonStartedSession() public method

    public function getLastActivityTimestampThrowsExceptionIfCalledOnNonStartedSession()
    {
        $session = new Session();
        $session->getLastActivityTimestamp();
    }
SessionTest