12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace Symfony\Component\Security\Http;
- final class SecurityEvents
- {
-
- const INTERACTIVE_LOGIN = 'security.interactive_login';
-
- const SWITCH_USER = 'security.switch_user';
- }
|