diff options
Diffstat (limited to 'Http/SecurityEvents.php')
-rw-r--r-- | Http/SecurityEvents.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Http/SecurityEvents.php b/Http/SecurityEvents.php new file mode 100644 index 0000000..a6c4e42 --- /dev/null +++ b/Http/SecurityEvents.php @@ -0,0 +1,19 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.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 SecurityEvents +{ + const INTERACTIVE_LOGIN = 'security.interactive_login'; + + const SWITCH_USER = 'security.switch_user'; +} |