diff options
Diffstat (limited to 'Http/Events.php')
-rw-r--r-- | Http/Events.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Http/Events.php b/Http/Events.php new file mode 100644 index 0000000..ac4a1ca --- /dev/null +++ b/Http/Events.php @@ -0,0 +1,19 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien.potencier@symfony-project.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Security\Http; + +final class Events +{ + const onSecurityInteractiveLogin = 'onSecurityInteractiveLogin'; + + const onSecuritySwitchUser = 'onSecuritySwitchUser'; +}
\ No newline at end of file |