Method |
Description |
|
__construct ( $userModel ) |
|
|
retrieveByCredentials ( array $credentials ) : Illuminate\Contracts\Auth\Authenticatable | null |
Retrieve a user by the given credentials. |
|
retrieveById ( mixed $identifier ) : Illuminate\Contracts\Auth\Authenticatable | null |
Retrieve a user by their unique identifier. |
|
retrieveByToken ( mixed $identifier, string $token ) : Illuminate\Contracts\Auth\Authenticatable | null |
Retrieve a user by by their unique identifier and "remember me" token. |
|
updateRememberToken ( Illuminate\Contracts\Auth\Authenticatable $user, string $token ) : void |
Update the "remember me" token for the given user in storage. |
|
validateCredentials ( Illuminate\Contracts\Auth\Authenticatable $user, array $credentials ) : boolean |
Validate a user against the given credentials. |
|