interface UserRepositoryInterface

User repository interface.

Methods

createUser(array $properties = [])

Creates and returns a user.

getByIdentifier(mixed $identifier)

Fetches a user by its identifier.

Details

at line 23
UserEntityInterface createUser(array $properties = [])

Creates and returns a user.

Parameters

array $properties User properties

Return Value

UserEntityInterface

at line 31
UserEntityInterface|bool getByIdentifier(mixed $identifier)

Fetches a user by its identifier.

Parameters

mixed $identifier User identifier

Return Value

UserEntityInterface|bool