diff options
Diffstat (limited to 'Authentication/Provider/DaoAuthenticationProvider.php')
-rw-r--r-- | Authentication/Provider/DaoAuthenticationProvider.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Authentication/Provider/DaoAuthenticationProvider.php b/Authentication/Provider/DaoAuthenticationProvider.php index b5ae27c..a4fb4c7 100644 --- a/Authentication/Provider/DaoAuthenticationProvider.php +++ b/Authentication/Provider/DaoAuthenticationProvider.php @@ -39,9 +39,9 @@ class DaoAuthenticationProvider extends UserAuthenticationProvider * @param AccountCheckerInterface $accountChecker An AccountCheckerInterface instance * @param PasswordEncoderInterface $passwordEncoder A PasswordEncoderInterface instance */ - public function __construct(UserProviderInterface $userProvider, AccountCheckerInterface $accountChecker, PasswordEncoderInterface $passwordEncoder = null) + public function __construct(UserProviderInterface $userProvider, AccountCheckerInterface $accountChecker, PasswordEncoderInterface $passwordEncoder = null, $hideUserNotFoundExceptions = true) { - parent::__construct($accountChecker); + parent::__construct($accountChecker, $hideUserNotFoundExceptions); if (null === $passwordEncoder) { $passwordEncoder = new PlaintextPasswordEncoder(); |