diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2016-05-03 14:21:46 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2016-05-03 14:21:46 +0200 |
commit | 069e08a5fa994d2b855fa050fdc1dace50c32113 (patch) | |
tree | 1660a0c9187b9b850772e37787f9e355268e4867 /Core | |
parent | 7f1a4713d1c96afb608bce443fb3161bc8a4b498 (diff) | |
parent | 0bcb6566657b5044162e1dfa8df30b4d3d8cfd17 (diff) | |
download | symfony-security-069e08a5fa994d2b855fa050fdc1dace50c32113.zip symfony-security-069e08a5fa994d2b855fa050fdc1dace50c32113.tar.gz symfony-security-069e08a5fa994d2b855fa050fdc1dace50c32113.tar.bz2 |
Merge branch '2.7' into 2.8
* 2.7:
add @Event annotation for AuthenticationEvents
add @Event annotation for KernelEvents
bumped Symfony version to 2.7.13
updated VERSION for 2.7.12
update CONTRIBUTORS for 2.7.12
updated CHANGELOG for 2.7.12
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
Revert "minor #18257 [Routing] Don't needlessly execute strtr's as they are fairly expensive (arjenm)"
Revert "fixed CS"
[FrameworkBundle] Remove misleading comment
bug #17460 [DI] fix ambiguous services schema
Diffstat (limited to 'Core')
-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'; |