You are here

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

Return an instance of the Emails class.

Return value

Emails

File

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

Class

Management

Namespace

Auth0\SDK\API

Code

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