*/ interface AuthenticationSuccessHandlerInterface { /** * This is called when an interactive authentication attempt succeeds. This * is called by authentication listeners inheriting from * AbstractAuthenticationListener. * * @param GetResponseEvent $event the "onCoreRequest" event, this event always * has the kernel as target * @param Request $request * @param TokenInterface $token * * @return Response the response to return */ function onAuthenticationSuccess(GetResponseEvent $event, Request $request, TokenInterface $token); }