summaryrefslogtreecommitdiffstats
path: root/Core/User/UserCheckerInterface.php
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2011-11-07 20:53:25 +0100
committerFabien Potencier <fabien.potencier@gmail.com>2011-11-07 20:53:25 +0100
commit0e3d865d981156aa97d2f121d22ed7595a9849ed (patch)
tree98ad1dd7a0a138044d2d23470389e22d47bfe005 /Core/User/UserCheckerInterface.php
parent20084d9b89c21dc5522bf5ed71b67c693aee91e3 (diff)
parent77b3459b7fd3d0c52fdcdc2edbb7052840841387 (diff)
downloadsymfony-security-0e3d865d981156aa97d2f121d22ed7595a9849ed.zip
symfony-security-0e3d865d981156aa97d2f121d22ed7595a9849ed.tar.gz
symfony-security-0e3d865d981156aa97d2f121d22ed7595a9849ed.tar.bz2
merged 2.0
Diffstat (limited to 'Core/User/UserCheckerInterface.php')
-rw-r--r--Core/User/UserCheckerInterface.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Core/User/UserCheckerInterface.php b/Core/User/UserCheckerInterface.php
index 25de94a..61f0f6e 100644
--- a/Core/User/UserCheckerInterface.php
+++ b/Core/User/UserCheckerInterface.php
@@ -23,14 +23,14 @@ interface UserCheckerInterface
/**
* Checks the user account before authentication.
*
- * @param UserInterface $user An UserInterface instance
+ * @param UserInterface $user a UserInterface instance
*/
function checkPreAuth(UserInterface $user);
/**
* Checks the user account after authentication.
*
- * @param UserInterface $user An UserInterface instance
+ * @param UserInterface $user a UserInterface instance
*/
function checkPostAuth(UserInterface $user);
}