You are here

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

Return an instance of the Logs class.

Return value

Logs

File

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

Class

Management

Namespace

Auth0\SDK\API

Code

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