summaryrefslogtreecommitdiffstats
path: root/Http/Authentication/AuthenticationSuccessHandlerInterface.php
diff options
context:
space:
mode:
authorOlivier Dolbeau <odolbeau@lafourchette.com>2012-01-24 17:36:01 +0100
committerOlivier Dolbeau <odolbeau@lafourchette.com>2012-01-24 17:57:22 +0100
commit1c7baca3ae299de80754f7dcb94ee4a7637f7f74 (patch)
tree5bf773b9cc795cf8b44120eae9a887df026bd392 /Http/Authentication/AuthenticationSuccessHandlerInterface.php
parent41adf77f0ab66a12202bf123baaf5d1b90e01176 (diff)
downloadsymfony-security-1c7baca3ae299de80754f7dcb94ee4a7637f7f74.zip
symfony-security-1c7baca3ae299de80754f7dcb94ee4a7637f7f74.tar.gz
symfony-security-1c7baca3ae299de80754f7dcb94ee4a7637f7f74.tar.bz2
Authentication(Success|Failure)Handler can now return null
Diffstat (limited to 'Http/Authentication/AuthenticationSuccessHandlerInterface.php')
-rw-r--r--Http/Authentication/AuthenticationSuccessHandlerInterface.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Authentication/AuthenticationSuccessHandlerInterface.php b/Http/Authentication/AuthenticationSuccessHandlerInterface.php
index 3d7c561..1a46ad4 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 the response to return
+ * @return Response|null the response to return
*/
function onAuthenticationSuccess(Request $request, TokenInterface $token);
}