diff --git a/src/Symfony/Component/Security/Core/AuthenticationEvents.php b/src/Symfony/Component/Security/Core/AuthenticationEvents.php index 1e0e6ffef0f9b..90b714267466c 100644 --- a/src/Symfony/Component/Security/Core/AuthenticationEvents.php +++ b/src/Symfony/Component/Security/Core/AuthenticationEvents.php @@ -13,7 +13,26 @@ final class AuthenticationEvents { + /** + * The AUTHENTICATION_SUCCESS event occurs after a user is authenticated + * by one provider. + * + * The event listener method receives a + * Symfony\Component\Security\Core\Event\AuthenticationEvent instance. + * + * @var string + */ const AUTHENTICATION_SUCCESS = 'security.authentication.success'; + /** + * The AUTHENTICATION_FAILURE event occurs after a user cannot be + * authenticated by any of the providers. + * + * The event listener method receives a + * Symfony\Component\Security\Core\Event\AuthenticationFailureEvent + * instance. + * + * @var string + */ const AUTHENTICATION_FAILURE = 'security.authentication.failure'; }