class GenericUser implements Authenticatable (View source)

Methods

void
__construct( array $attributes)

Create a new generic User object.

string
getAuthIdentifierName()

Get the name of the unique identifier for the user.

mixed
getAuthIdentifier()

Get the unique identifier for the user.

string
getAuthPassword()

Get the password for the user.

string
getRememberToken()

Get the "remember me" token value.

void
setRememberToken( string $value)

Set the "remember me" token value.

string
getRememberTokenName()

Get the column name for the "remember me" token.

mixed
__get( string $key)

Dynamically access the user's attributes.

void
__set( string $key, mixed $value)

Dynamically set an attribute on the user.

bool
__isset( string $key)

Dynamically check if a value is set on the user.

void
__unset( string $key)

Dynamically unset a value on the user.

Details

at line line 22
void __construct( array $attributes)

Create a new generic User object.

Parameters

array $attributes

Return Value

void

at line line 32
string getAuthIdentifierName()

Get the name of the unique identifier for the user.

Return Value

string

at line line 42
mixed getAuthIdentifier()

Get the unique identifier for the user.

Return Value

mixed

at line line 54
string getAuthPassword()

Get the password for the user.

Return Value

string

at line line 64
string getRememberToken()

Get the "remember me" token value.

Return Value

string

at line line 75
void setRememberToken( string $value)

Set the "remember me" token value.

Parameters

string $value

Return Value

void

at line line 85
string getRememberTokenName()

Get the column name for the "remember me" token.

Return Value

string

at line line 96
mixed __get( string $key)

Dynamically access the user's attributes.

Parameters

string $key

Return Value

mixed

at line line 108
void __set( string $key, mixed $value)

Dynamically set an attribute on the user.

Parameters

string $key
mixed $value

Return Value

void

at line line 119
bool __isset( string $key)

Dynamically check if a value is set on the user.

Parameters

string $key

Return Value

bool

at line line 130
void __unset( string $key)

Dynamically unset a value on the user.

Parameters

string $key

Return Value

void