File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
src/Symfony/Component/Security/Http Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 13
13
14
14
final class SecurityEvents
15
15
{
16
+ /**
17
+ * The INTERACTIVE_LOGIN event occurs after a user is logged in
18
+ * interactively for authentication based on http, cookies or X509.
19
+ *
20
+ * The event listener method receives a
21
+ * Symfony\Component\Security\Http\Event\InteractiveLoginEvent instance.
22
+ *
23
+ * @var string
24
+ */
16
25
const INTERACTIVE_LOGIN = 'security.interactive_login ' ;
17
26
27
+ /**
28
+ * The SWITCH_USER event occurs before switch to another user and
29
+ * before exit from an already switched user.
30
+ *
31
+ * The event listener method receives a
32
+ * Symfony\Component\Security\Http\Event\SwitchUserEvent instance.
33
+ *
34
+ * @var string
35
+ */
18
36
const SWITCH_USER = 'security.switch_user ' ;
19
37
}
You can’t perform that action at this time.
0 commit comments