UserApi
extends BaseApi
in package
Table of Contents
Properties
Methods
- __construct() : mixed
- BaseApi constructor.
- me() : array{message: string, data: array}
- Get current user details <code> <?php $response = $olc->user()->me(); var_dump($response); ?> </code>
- getInstance() : OlcInstance
- Gets the OlcInstance that this API is associated with.
Properties
$_olcInstance
private
OlcInstance
$_olcInstance
Methods
__construct()
BaseApi constructor.
public
__construct(OlcInstance $_olcInstance) : mixed
Parameters
- $_olcInstance : OlcInstance
-
OlcInstance that this API is associated with
me()
Get current user details <code> <?php $response = $olc->user()->me(); var_dump($response); ?> </code>
public
me() : array{message: string, data: array}
Tags
Return values
array{message: string, data: array} —The response data.
getInstance()
Gets the OlcInstance that this API is associated with.
protected
getInstance() : OlcInstance