class SimpleIdentity implements IIdentity

Default implementation of IIdentity.

Properties

string|int $id
array $roles
array $data

Methods

__construct($id, $roles = null, iterable|null $data = null)

No description

setId(string|int $id)

Sets the ID of user.

string|int
getId()

Returns the ID of user.

setRoles(array $roles)

Sets a list of roles that the user is a member of.

array
getRoles()

Returns a list of roles that the user is a member of.

array
getData()

Returns a user data.

void
__set(string $key, $value)

Sets user data value.

mixed
__get(string $key)

Returns user data value.

bool
__isset(string $key)

No description

array
__serialize()

No description

void
__unserialize(array $data)

No description

Details

at line 26
__construct($id, $roles = null, iterable|null $data = null)

No description

Parameters

$id
$roles
iterable|null $data

at line 39
SimpleIdentity setId(string|int $id)

Sets the ID of user.

Parameters

string|int $id

Return Value

SimpleIdentity

at line 49
string|int getId()

Returns the ID of user.

Return Value

string|int

at line 58
SimpleIdentity setRoles(array $roles)

Sets a list of roles that the user is a member of.

Parameters

array $roles

Return Value

SimpleIdentity

at line 68
array getRoles()

Returns a list of roles that the user is a member of.

Return Value

array

at line 77
array getData()

Returns a user data.

Return Value

array

at line 86
void __set(string $key, $value)

Sets user data value.

Parameters

string $key
$value

Return Value

void

at line 100
mixed __get(string $key)

Returns user data value.

Parameters

string $key

Return Value

mixed

at line 112
bool __isset(string $key)

No description

Parameters

string $key

Return Value

bool

at line 118
array __serialize()

No description

Return Value

array

at line 128
void __unserialize(array $data)

No description

Parameters

array $data

Return Value

void