diff options
author | Alexander <iam.asm89@gmail.com> | 2012-06-17 21:47:16 +0200 |
---|---|---|
committer | Alexander <iam.asm89@gmail.com> | 2012-07-08 19:59:10 +0200 |
commit | 7004925db73aaedefcbb58c92d8be68a05926ddd (patch) | |
tree | b033c49593f6c705ec92d8509154f89d4744df12 /Http/Authentication/AuthenticationSuccessHandlerInterface.php | |
parent | f5719bac71c1b44dfdd48ccc9249edfde94c3204 (diff) | |
download | symfony-security-7004925db73aaedefcbb58c92d8be68a05926ddd.zip symfony-security-7004925db73aaedefcbb58c92d8be68a05926ddd.tar.gz symfony-security-7004925db73aaedefcbb58c92d8be68a05926ddd.tar.bz2 |
[Security] Move default authentication success handling strategy to seperate class [Security] Update configuration for changes regarding default success handler [Security] Fix + add AbstractFactory test
Diffstat (limited to 'Http/Authentication/AuthenticationSuccessHandlerInterface.php')
-rw-r--r-- | Http/Authentication/AuthenticationSuccessHandlerInterface.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Authentication/AuthenticationSuccessHandlerInterface.php b/Http/Authentication/AuthenticationSuccessHandlerInterface.php index 8917f3e..99b1ae6 100644 --- a/Http/Authentication/AuthenticationSuccessHandlerInterface.php +++ b/Http/Authentication/AuthenticationSuccessHandlerInterface.php @@ -33,7 +33,7 @@ interface AuthenticationSuccessHandlerInterface * @param Request $request * @param TokenInterface $token * - * @return Response|null the response to return + * @return Response never null */ function onAuthenticationSuccess(Request $request, TokenInterface $token); } |