diff options
author | Pascal Borreli <pascal@borreli.com> | 2011-04-23 15:05:44 +0000 |
---|---|---|
committer | Pascal Borreli <pascal@borreli.com> | 2011-04-23 15:18:47 +0000 |
commit | e2231da7eadcdc2ec5ac5be89ce3d21422dfafd6 (patch) | |
tree | f32c9af26b3d40607668ea13c1ed307549b15b4f /Core/Authentication/Provider/DaoAuthenticationProvider.php | |
parent | badc0d6f36373b81ab66c48342e024649321700f (diff) | |
download | symfony-security-e2231da7eadcdc2ec5ac5be89ce3d21422dfafd6.zip symfony-security-e2231da7eadcdc2ec5ac5be89ce3d21422dfafd6.tar.gz symfony-security-e2231da7eadcdc2ec5ac5be89ce3d21422dfafd6.tar.bz2 |
[Phpdoc] Cleaning/fixing
Diffstat (limited to 'Core/Authentication/Provider/DaoAuthenticationProvider.php')
-rw-r--r-- | Core/Authentication/Provider/DaoAuthenticationProvider.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Core/Authentication/Provider/DaoAuthenticationProvider.php b/Core/Authentication/Provider/DaoAuthenticationProvider.php index fa08955..f9e8b38 100644 --- a/Core/Authentication/Provider/DaoAuthenticationProvider.php +++ b/Core/Authentication/Provider/DaoAuthenticationProvider.php @@ -35,9 +35,11 @@ class DaoAuthenticationProvider extends UserAuthenticationProvider /** * Constructor. * - * @param UserProviderInterface $userProvider A UserProviderInterface instance - * @param UserCheckerInterface $userChecker An UserCheckerInterface instance - * @param EncoderFactoryInterface $encoderFactory A EncoderFactoryInterface instance + * @param UserProviderInterface $userProvider An UserProviderInterface instance + * @param UserCheckerInterface $userChecker An UserCheckerInterface instance + * @param string $providerKey The provider key + * @param EncoderFactoryInterface $encoderFactory An EncoderFactoryInterface instance + * @param Boolean $hideUserNotFoundExceptions Whether to hide user not found exception or not */ public function __construct(UserProviderInterface $userProvider, UserCheckerInterface $userChecker, $providerKey, EncoderFactoryInterface $encoderFactory, $hideUserNotFoundExceptions = true) { |