summaryrefslogtreecommitdiffstats
path: root/Http/Authentication/AuthenticationSuccessHandlerInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'Http/Authentication/AuthenticationSuccessHandlerInterface.php')
-rw-r--r--Http/Authentication/AuthenticationSuccessHandlerInterface.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/Http/Authentication/AuthenticationSuccessHandlerInterface.php b/Http/Authentication/AuthenticationSuccessHandlerInterface.php
new file mode 100644
index 0000000..6efa309
--- /dev/null
+++ b/Http/Authentication/AuthenticationSuccessHandlerInterface.php
@@ -0,0 +1,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);
+} \ No newline at end of file