diff options
author | Alexander <iam.asm89@gmail.com> | 2012-06-21 09:44:37 +0200 |
---|---|---|
committer | Alexander <iam.asm89@gmail.com> | 2012-07-08 19:59:10 +0200 |
commit | 15dea5261261c3700c97787df9b6888b978dbac3 (patch) | |
tree | 9d90a72d5717fe81ea5b36eb676d8cffdb6dc73c /Http/Authentication | |
parent | 2396695756f94bb70b6dd8f097611bd35ef0eb80 (diff) | |
download | symfony-security-15dea5261261c3700c97787df9b6888b978dbac3.zip symfony-security-15dea5261261c3700c97787df9b6888b978dbac3.tar.gz symfony-security-15dea5261261c3700c97787df9b6888b978dbac3.tar.bz2 |
[Security] Update AuthenticationFailureHandlerInterface docblock. Never return null
Diffstat (limited to 'Http/Authentication')
-rw-r--r-- | Http/Authentication/AuthenticationFailureHandlerInterface.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Authentication/AuthenticationFailureHandlerInterface.php b/Http/Authentication/AuthenticationFailureHandlerInterface.php index 9cd7496..7cc4da8 100644 --- a/Http/Authentication/AuthenticationFailureHandlerInterface.php +++ b/Http/Authentication/AuthenticationFailureHandlerInterface.php @@ -33,7 +33,7 @@ interface AuthenticationFailureHandlerInterface * @param Request $request * @param AuthenticationException $exception * - * @return Response|null the response to return + * @return Response The response to return, never null */ function onAuthenticationFailure(Request $request, AuthenticationException $exception); } |