diff options
author | Daniel Espendiller <daniel@espendiller.net> | 2016-05-02 19:21:33 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2016-05-03 14:17:15 +0200 |
commit | 5f0f6f3d66a5e6d1a3f73094335f6acdc23372c1 (patch) | |
tree | 8115b5fbf6b788c814853877c01842fabe1001f6 | |
parent | 28ff48df813cb85b2efa0aaa3e487981b08880cd (diff) | |
download | symfony-security-5f0f6f3d66a5e6d1a3f73094335f6acdc23372c1.zip symfony-security-5f0f6f3d66a5e6d1a3f73094335f6acdc23372c1.tar.gz symfony-security-5f0f6f3d66a5e6d1a3f73094335f6acdc23372c1.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'; |