You are here

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

Return an instance of the Rules class.

Return value

Rules

File

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

Class

Management

Namespace

Auth0\SDK\API

Code

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