diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2016-05-03 14:23:49 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2016-05-03 14:23:49 +0200 |
commit | 39af3a2cb7a51a05b83433bb22b06e16ef2d5ef3 (patch) | |
tree | c81c2ddf3c6d3cf278ae97149a5b93c374782f25 /Core | |
parent | 19d6c2b9c5fa4403c76bbd3c9b3fe46cb63819a8 (diff) | |
parent | 069e08a5fa994d2b855fa050fdc1dace50c32113 (diff) | |
download | symfony-security-39af3a2cb7a51a05b83433bb22b06e16ef2d5ef3.zip symfony-security-39af3a2cb7a51a05b83433bb22b06e16ef2d5ef3.tar.gz symfony-security-39af3a2cb7a51a05b83433bb22b06e16ef2d5ef3.tar.bz2 |
Merge branch '2.8' into 3.0
* 2.8:
add @Event annotation for AuthenticationEvents
bumped Symfony version to 2.8.6
[PropertyInfo] PHPDoc correction
add @Event annotation for KernelEvents
updated VERSION for 2.8.5
updated CHANGELOG for 2.8.5
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"
fixed deprecation notices in tests
[Security] Normalize "symfony/security-acl" dependency versions across all composer.json files
[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'; |