summaryrefslogtreecommitdiffstats
path: root/Http/Authentication/AuthenticationFailureHandlerInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'Http/Authentication/AuthenticationFailureHandlerInterface.php')
-rw-r--r--Http/Authentication/AuthenticationFailureHandlerInterface.php11
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