diff options
Diffstat (limited to 'Http/Authentication/AuthenticationFailureHandlerInterface.php')
-rw-r--r-- | Http/Authentication/AuthenticationFailureHandlerInterface.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Http/Authentication/AuthenticationFailureHandlerInterface.php b/Http/Authentication/AuthenticationFailureHandlerInterface.php new file mode 100644 index 0000000..4957edf --- /dev/null +++ b/Http/Authentication/AuthenticationFailureHandlerInterface.php @@ -0,0 +1,11 @@ +<?php + +namespace Symfony\Component\Security\Http\Authentication; + +use Symfony\Component\EventDispatcher\EventInterface; +use Symfony\Component\HttpFoundation\Request; + +interface AuthenticationFailureHandlerInterface +{ + function onAuthenticationFailure(EventInterface $event, Request $request, \Exception $exception); +}
\ No newline at end of file |