diff options
author | Bernhard Schussek <bernhard.schussek@symfony-project.com> | 2011-03-17 13:24:23 +0100 |
---|---|---|
committer | Bernhard Schussek <bernhard.schussek@symfony-project.com> | 2011-03-17 13:24:23 +0100 |
commit | 59f3260f97e218b4a88ee458ffa6ab0ba3b86aa5 (patch) | |
tree | 88862308a3bda4ee7bb5885502d0ab4eaa07a1b5 /Http/Authentication | |
parent | a7c5a4f08c35edf4e2c2362a403aab228078e9f8 (diff) | |
download | symfony-security-59f3260f97e218b4a88ee458ffa6ab0ba3b86aa5.zip symfony-security-59f3260f97e218b4a88ee458ffa6ab0ba3b86aa5.tar.gz symfony-security-59f3260f97e218b4a88ee458ffa6ab0ba3b86aa5.tar.bz2 |
[Security] Fixed method names in the Firewall listeners
Diffstat (limited to 'Http/Authentication')
-rw-r--r-- | Http/Authentication/AuthenticationFailureHandlerInterface.php | 2 | ||||
-rw-r--r-- | Http/Authentication/AuthenticationSuccessHandlerInterface.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Http/Authentication/AuthenticationFailureHandlerInterface.php b/Http/Authentication/AuthenticationFailureHandlerInterface.php index e2d8eb2..02db734 100644 --- a/Http/Authentication/AuthenticationFailureHandlerInterface.php +++ b/Http/Authentication/AuthenticationFailureHandlerInterface.php @@ -22,7 +22,7 @@ interface AuthenticationFailureHandlerInterface * called by authentication listeners inheriting from * AbstractAuthenticationListener. * - * @param GetResponseEvent $event the "onCoreSecurity" event, this event always + * @param GetResponseEvent $event the "onCoreRequest" event, this event always * has the kernel as target * @param Request $request * @param AuthenticationException $exception diff --git a/Http/Authentication/AuthenticationSuccessHandlerInterface.php b/Http/Authentication/AuthenticationSuccessHandlerInterface.php index d7f8488..0af47c9 100644 --- a/Http/Authentication/AuthenticationSuccessHandlerInterface.php +++ b/Http/Authentication/AuthenticationSuccessHandlerInterface.php @@ -22,7 +22,7 @@ interface AuthenticationSuccessHandlerInterface * is called by authentication listeners inheriting from * AbstractAuthenticationListener. * - * @param GetResponseEvent $event the "onCoreSecurity" event, this event always + * @param GetResponseEvent $event the "onCoreRequest" event, this event always * has the kernel as target * @param Request $request * @param TokenInterface $token |