You are here

public function Management::users in Auth0 Single Sign On 8.2

Return an instance of the Users class.

Return value

Users

File

vendor/auth0/auth0-php/src/API/Management.php, line 474

Class

Management

Namespace

Auth0\SDK\API

Code

public function users() {
  if (!$this->users instanceof Users) {
    $this->users = new Users($this->apiClient);
  }
  return $this->users;
}