interface AuthenticationProviderInterface implements AuthenticationManagerInterface
AuthenticationProviderInterface is the interface for for all authentication providers.
Concrete implementations processes specific Token instances.
Methods
| TokenInterface |
authenticate(TokenInterface $token)
Attempts to authenticates a TokenInterface object. |
from AuthenticationManagerInterface |
| Boolean |
supports(TokenInterface $token)
Checks whether this provider supports the given token. |
Details
in AuthenticationManagerInterface at line 34
public TokenInterface
authenticate(TokenInterface $token)
Attempts to authenticates a TokenInterface object.
at line 34
public Boolean
supports(TokenInterface $token)
Checks whether this provider supports the given token.