diff options
author | Daniel Espendiller <daniel@espendiller.net> | 2016-05-02 19:21:33 +0200 |
---|---|---|
committer | Daniel Espendiller <daniel@espendiller.net> | 2016-05-02 19:21:33 +0200 |
commit | 36d0ab3c0f6440bd1febe8679ff69a75d3ab519a (patch) | |
tree | 552b80a545343887d6852ecaf5696608bec9d96c | |
parent | 89c67b56212c3e050681ba0acc0c2fc169a35f9a (diff) | |
download | symfony-security-36d0ab3c0f6440bd1febe8679ff69a75d3ab519a.zip symfony-security-36d0ab3c0f6440bd1febe8679ff69a75d3ab519a.tar.gz symfony-security-36d0ab3c0f6440bd1febe8679ff69a75d3ab519a.tar.bz2 |
add @Event annotation for AuthenticationEvents
-rw-r--r-- | Core/AuthenticationEvents.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Core/AuthenticationEvents.php b/Core/AuthenticationEvents.php index 90b7142..13bce30 100644 --- a/Core/AuthenticationEvents.php +++ b/Core/AuthenticationEvents.php @@ -20,6 +20,8 @@ final class AuthenticationEvents * The event listener method receives a * Symfony\Component\Security\Core\Event\AuthenticationEvent instance. * + * @Event + * * @var string */ const AUTHENTICATION_SUCCESS = 'security.authentication.success'; @@ -32,6 +34,8 @@ final class AuthenticationEvents * Symfony\Component\Security\Core\Event\AuthenticationFailureEvent * instance. * + * @Event + * * @var string */ const AUTHENTICATION_FAILURE = 'security.authentication.failure'; |