blob: 6efa3093638672dc34720ec1f6f27d8e9efa5cb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
namespace Symfony\Component\Security\Http\Authentication;
use Symfony\Component\EventDispatcher\EventInterface;
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
use Symfony\Component\HttpFoundation\Request;
interface AuthenticationSuccessHandlerInterface
{
function onAuthenticationSuccess(EventInterface $event, Request $request, TokenInterface $token);
}
|