public function Management::users in Auth0 Single Sign On 8.2
Return an instance of the Users class.
Return value
File
- vendor/
auth0/ auth0-php/ src/ API/ Management.php, line 474
Class
Namespace
Auth0\SDK\APICode
public function users() {
if (!$this->users instanceof Users) {
$this->users = new Users($this->apiClient);
}
return $this->users;
}