summaryrefslogtreecommitdiffstats
path: root/Core
diff options
context:
space:
mode:
authorDaniel Espendiller <daniel@espendiller.net>2016-05-02 19:21:33 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2016-05-03 14:17:15 +0200
commit5f0f6f3d66a5e6d1a3f73094335f6acdc23372c1 (patch)
tree8115b5fbf6b788c814853877c01842fabe1001f6 /Core
parent28ff48df813cb85b2efa0aaa3e487981b08880cd (diff)
downloadsymfony-security-5f0f6f3d66a5e6d1a3f73094335f6acdc23372c1.zip
symfony-security-5f0f6f3d66a5e6d1a3f73094335f6acdc23372c1.tar.gz
symfony-security-5f0f6f3d66a5e6d1a3f73094335f6acdc23372c1.tar.bz2
add @Event annotation for AuthenticationEvents
Diffstat (limited to 'Core')
-rw-r--r--Core/AuthenticationEvents.php4
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';