summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2016-05-03 14:21:10 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2016-05-03 14:21:10 +0200
commit0bcb6566657b5044162e1dfa8df30b4d3d8cfd17 (patch)
treea2f633db5c43b99886959a6335a61222d8ad375d
parent5b789c31e791c6e499644f203b51e8302e467039 (diff)
parent5f0f6f3d66a5e6d1a3f73094335f6acdc23372c1 (diff)
downloadsymfony-security-0bcb6566657b5044162e1dfa8df30b4d3d8cfd17.zip
symfony-security-0bcb6566657b5044162e1dfa8df30b4d3d8cfd17.tar.gz
symfony-security-0bcb6566657b5044162e1dfa8df30b4d3d8cfd17.tar.bz2
Merge branch '2.3' into 2.7
* 2.3: add @Event annotation for AuthenticationEvents bumped Symfony version to 2.3.41 updated VERSION for 2.3.40 update CONTRIBUTORS for 2.3.40 updated CHANGELOG for 2.3.40 bug #17460 [DI] fix ambiguous services schema
-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';