diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-11-16 18:28:09 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-11-16 18:28:09 +0100 |
commit | e3edd18b37e848d4870c521f53746de8acb5eed1 (patch) | |
tree | 9a95392e7dd2fb733925c54281dcfc84fdea6f38 /Http | |
parent | 523afec3bf83cfaf067d3c5b92b02eaa18d730cd (diff) | |
parent | 646fe0c990f619ec433d9f048cb5fdd173bb4e85 (diff) | |
download | symfony-security-e3edd18b37e848d4870c521f53746de8acb5eed1.zip symfony-security-e3edd18b37e848d4870c521f53746de8acb5eed1.tar.gz symfony-security-e3edd18b37e848d4870c521f53746de8acb5eed1.tar.bz2 |
Merge branch '2.5' into 2.6
* 2.5:
Update filesystem readme.md to include exists method
Add machine readable events
[HttpKernel][2.6] Adding support for invokable controllers in the RequestDataCollector
fixed typo
[Translations] Added missing Hebrew language trans-unit sources
[DependencyInjection] inlined factory not referenced
Fixed case for empty folder
Fixed whitespace control for password form widget
[Routing] correctly initialize condition as string
Diffstat (limited to 'Http')
-rw-r--r-- | Http/SecurityEvents.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Http/SecurityEvents.php b/Http/SecurityEvents.php index 45fae29..46c8257 100644 --- a/Http/SecurityEvents.php +++ b/Http/SecurityEvents.php @@ -20,6 +20,8 @@ final class SecurityEvents * The event listener method receives a * Symfony\Component\Security\Http\Event\InteractiveLoginEvent instance. * + * @Event + * * @var string */ const INTERACTIVE_LOGIN = 'security.interactive_login'; @@ -31,6 +33,8 @@ final class SecurityEvents * The event listener method receives a * Symfony\Component\Security\Http\Event\SwitchUserEvent instance. * + * @Event + * * @var string */ const SWITCH_USER = 'security.switch_user'; |