summaryrefslogtreecommitdiffstats
path: root/Core/AuthenticationEvents.php
diff options
context:
space:
mode:
authorFran Moreno <franmomu@gmail.com>2013-01-22 10:47:05 +0100
committerFran Moreno <franmomu@gmail.com>2013-01-22 10:47:05 +0100
commit472bfa838f53ff8da52b67141e0e0d99aa1899fc (patch)
tree1b6eae4a9c1313f45d709df179ae8610e945144a /Core/AuthenticationEvents.php
parent6335d042d57da0016da722abefd9e1c519c88f2c (diff)
downloadsymfony-security-472bfa838f53ff8da52b67141e0e0d99aa1899fc.zip
symfony-security-472bfa838f53ff8da52b67141e0e0d99aa1899fc.tar.gz
symfony-security-472bfa838f53ff8da52b67141e0e0d99aa1899fc.tar.bz2
[Security] Add PHPDoc to AuthenticationEvents
Diffstat (limited to 'Core/AuthenticationEvents.php')
-rw-r--r--Core/AuthenticationEvents.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/Core/AuthenticationEvents.php b/Core/AuthenticationEvents.php
index 1e0e6ff..90b7142 100644
--- a/Core/AuthenticationEvents.php
+++ b/Core/AuthenticationEvents.php
@@ -13,7 +13,26 @@ namespace Symfony\Component\Security\Core;
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';
}