summaryrefslogtreecommitdiffstats
path: root/Http/Session/SessionAuthenticationStrategyInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'Http/Session/SessionAuthenticationStrategyInterface.php')
-rw-r--r--Http/Session/SessionAuthenticationStrategyInterface.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/Http/Session/SessionAuthenticationStrategyInterface.php b/Http/Session/SessionAuthenticationStrategyInterface.php
new file mode 100644
index 0000000..c2d95c3
--- /dev/null
+++ b/Http/Session/SessionAuthenticationStrategyInterface.php
@@ -0,0 +1,11 @@
+<?php
+
+namespace Symfony\Component\Security\Http\Session;
+
+use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
+use Symfony\Component\HttpFoundation\Request;
+
+interface SessionAuthenticationStrategyInterface
+{
+ function onAuthentication(Request $request, TokenInterface $token);
+} \ No newline at end of file