You are here

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

Return an instance of the ResourceServers class.

Return value

ResourceServers

File

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

Class

Management

Namespace

Auth0\SDK\API

Code

public function resourceServers() {
  if (!$this->resource_servers instanceof ResourceServers) {
    $this->resource_servers = new ResourceServers($this->apiClient);
  }
  return $this->resource_servers;
}