class GuardAuthenticationProvider implements AuthenticationProviderInterface
Responsible for accepting the PreAuthenticationGuardToken and calling the correct authenticator to retrieve the authenticated token.
Methods
__construct(array $guardAuthenticators, UserProviderInterface $userProvider, string $providerKey, UserCheckerInterface $userChecker) | ||
TokenInterface | authenticate(TokenInterface $token) Finds the correct authenticator for the token and calls it. | |
bool | supports(TokenInterface $token) Checks whether this provider supports the given token. |
Details
__construct(array $guardAuthenticators, UserProviderInterface $userProvider, string $providerKey, UserCheckerInterface $userChecker)
TokenInterface authenticate(TokenInterface $token)
Finds the correct authenticator for the token and calls it.
bool supports(TokenInterface $token)
Checks whether this provider supports the given token.
Please login to continue.