File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed
src/Symfony/Component/Security/Core Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 13
13
14
14
final class AuthenticationEvents
15
15
{
16
+ /**
17
+ * The AUTHENTICATION_SUCCESS event occurs after a user is authenticated
18
+ * by one provider.
19
+ *
20
+ * The event listener method receives a
21
+ * Symfony\Component\Security\Core\Event\AuthenticationEvent instance.
22
+ *
23
+ * @var string
24
+ */
16
25
const AUTHENTICATION_SUCCESS = 'security.authentication.success ' ;
17
26
27
+ /**
28
+ * The AUTHENTICATION_FAILURE event occurs after a user cannot be
29
+ * authenticated by any of the providers.
30
+ *
31
+ * The event listener method receives a
32
+ * Symfony\Component\Security\Core\Event\AuthenticationFailureEvent
33
+ * instance.
34
+ *
35
+ * @var string
36
+ */
18
37
const AUTHENTICATION_FAILURE = 'security.authentication.failure ' ;
19
38
}
You can’t perform that action at this time.
0 commit comments