interface AuthenticationProviderInterface implements AuthenticationManagerInterface
AuthenticationProviderInterface is the interface for all authentication providers.
Concrete implementations processes specific Token instances.
Constants
USERNAME_NONE_PROVIDED | Use this constant for not provided username. |
Methods
TokenInterface | authenticate(TokenInterface $token) Attempts to authenticate a TokenInterface object. | from AuthenticationManagerInterface |
bool | supports(TokenInterface $token) Checks whether this provider supports the given token. |
Details
TokenInterface authenticate(TokenInterface $token)
Attempts to authenticate a TokenInterface object.
bool supports(TokenInterface $token)
Checks whether this provider supports the given token.
Please login to continue.