*/ interface SessionAuthenticationStrategyInterface { /** * This performs any necessary changes to the session. * * This method is called before the SecurityContext is populated with a * Token, and only by classes inheriting from AbstractAuthenticationListener. * * @param Request $request * @param TokenInterface $token * * @return void */ function onAuthentication(Request $request, TokenInterface $token); }