EloquentUserProvider
class EloquentUserProvider implements UserProvider
Properties
protected Hasher | $hasher | The hasher implementation. |
|
protected string | $model | The Eloquent user model. |
Methods
Retrieve a user by their unique identifier.
Retrieve a user by their unique identifier and "remember me" token.
Update the "remember me" token for the given user in storage.
Retrieve a user by the given credentials.
Validate a user against the given credentials.
Create a new instance of the model.
Gets the name of the Eloquent user model.
Sets the name of the Eloquent user model.
Details
at line 33
void
__construct(Hasher $hasher, string $model)
Create a new database user provider.
at line 45
Authenticatable|null
retrieveById(mixed $identifier)
Retrieve a user by their unique identifier.
at line 61
Authenticatable|null
retrieveByToken(mixed $identifier, string $token)
Retrieve a user by their unique identifier and "remember me" token.
at line 78
void
updateRememberToken(Authenticatable $user, string $token)
Update the "remember me" token for the given user in storage.
at line 97
Authenticatable|null
retrieveByCredentials(array $credentials)
Retrieve a user by the given credentials.
at line 124
bool
validateCredentials(Authenticatable $user, array $credentials)
Validate a user against the given credentials.
at line 136
Model
createModel()
Create a new instance of the model.
at line 148
Hasher
getHasher()
Gets the hasher implementation.
at line 159
$this
setHasher(Hasher $hasher)
Sets the hasher implementation.
at line 171
string
getModel()
Gets the name of the Eloquent user model.
at line 182
$this
setModel(string $model)
Sets the name of the Eloquent user model.