public function Management::rules in Auth0 Single Sign On 8.2
Return an instance of the Rules class.
Return value
File
- vendor/
auth0/ auth0-php/ src/ API/ Management.php, line 390
Class
Namespace
Auth0\SDK\APICode
public function rules() {
if (!$this->rules instanceof Rules) {
$this->rules = new Rules($this->apiClient);
}
return $this->rules;
}