8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 293c8a1 commit 0501761Copy full SHA for 0501761
src/Symfony/Component/Security/Guard/Provider/GuardAuthenticationProvider.php
@@ -96,10 +96,8 @@ public function authenticate(TokenInterface $token)
96
}
97
98
99
- throw new \LogicException(sprintf(
100
- 'The correct GuardAuthenticator could not be found for unique key "%s". The listener and provider should be passed the same list of authenticators.',
101
- $token->getGuardProviderKey()
102
- ));
+ // no matching authenticator found - but there will be multiple GuardAuthenticationProvider
+ // instances that will be checked if you have multiple firewalls.
103
104
105
private function authenticateViaGuard(GuardAuthenticatorInterface $guardAuthenticator, PreAuthenticationGuardToken $token)
0 commit comments