Interface CtctDataStore
Interface containing the necessary functionality to manage an OAuth2 data
store
Methods summary
public
|
#
addUser( mixed $id, array $params )
Add a new user to the data store
Add a new user to the data store
Parameters
- $id
mixed $id - unique identifier
- $params
array $params - additional parameters
|
public
|
#
getUser( mixed $id )
Get an existing user from the data store
Get an existing user from the data store
Parameters
- $id
mixed $id - unique identifier
|
public
|
#
updateUser( mixed $id, array $params )
Update an existing user in the data store
Update an existing user in the data store
Parameters
- $id
mixed $id - unique identifier
- $params
array $params - additional parameters
|
public
|
#
deleteUser( mixed $id )
Delete an existing user from the data store
Delete an existing user from the data store
Parameters
- $id
mixed $id - unique identifier
|