diff options
Diffstat (limited to 'Http/Session/SessionAuthenticationStrategyInterface.php')
-rw-r--r-- | Http/Session/SessionAuthenticationStrategyInterface.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Http/Session/SessionAuthenticationStrategyInterface.php b/Http/Session/SessionAuthenticationStrategyInterface.php index b248fd7..54924ac 100644 --- a/Http/Session/SessionAuthenticationStrategyInterface.php +++ b/Http/Session/SessionAuthenticationStrategyInterface.php @@ -1,5 +1,14 @@ <?php +/* + * This file is part of the Symfony framework. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + namespace Symfony\Component\Security\Http\Session; use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; @@ -27,4 +36,4 @@ interface SessionAuthenticationStrategyInterface * @return void */ function onAuthentication(Request $request, TokenInterface $token); -}
\ No newline at end of file +} |