You are here

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

Return an instance of the Tickets class.

Return value

Tickets

File

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

Class

Management

Namespace

Auth0\SDK\API

Code

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