RememberMeAuthenticationProvider
in package
implements
AuthenticationProviderInterface
Interfaces, Classes, Traits and Enums
- AuthenticationProviderInterface
- AuthenticationProviderInterface is the interface for all authentication providers.
Table of Contents
- $providerKey : mixed
- $secret : mixed
- $userChecker : mixed
- __construct() : mixed
- authenticate() : mixed
- {@inheritdoc}
- supports() : bool
- Checks whether this provider supports the given token.
Properties
$providerKey
private
mixed
$providerKey
$secret
private
mixed
$secret
$userChecker
private
mixed
$userChecker
Methods
__construct()
public
__construct(UserCheckerInterface $userChecker, string $secret, string $providerKey) : mixed
Parameters
- $userChecker : UserCheckerInterface
- $secret : string
-
A secret
- $providerKey : string
-
A provider secret
Return values
mixed —authenticate()
{@inheritdoc}
public
authenticate(TokenInterface $token) : mixed
Parameters
- $token : TokenInterface
Return values
mixed —supports()
Checks whether this provider supports the given token.
public
supports(TokenInterface $token) : bool
Parameters
- $token : TokenInterface
Return values
bool —true if the implementation supports the Token, false otherwise