GenericUser
class GenericUser implements Authenticatable
Methods
Create a new generic User object.
Get the name of the unique identifier for the user.
Get the unique identifier for the user.
Get the name of the password attribute for the user.
Get the password for the user.
Get the "remember me" token value.
Set the "remember me" token value.
Get the column name for the "remember me" token.
Dynamically access the user's attributes.
Dynamically set an attribute on the user.
Dynamically check if a value is set on the user.
Dynamically unset a value on the user.
Details
at line 14
__construct(array $attributes)
Create a new generic User object.
at line 22
string
getAuthIdentifierName()
Get the name of the unique identifier for the user.
at line 30
mixed
getAuthIdentifier()
Get the unique identifier for the user.
at line 38
string
getAuthPasswordName()
Get the name of the password attribute for the user.
at line 46
string|null
getAuthPassword()
Get the password for the user.
at line 54
string|null
getRememberToken()
Get the "remember me" token value.
at line 62
void
setRememberToken(string $value)
Set the "remember me" token value.
at line 70
string
getRememberTokenName()
Get the column name for the "remember me" token.
at line 78
mixed
__get(string $key)
Dynamically access the user's attributes.
at line 86
void
__set(string $key, mixed $value)
Dynamically set an attribute on the user.
at line 94
bool
__isset(string $key)
Dynamically check if a value is set on the user.
at line 102
void
__unset(string $key)
Dynamically unset a value on the user.