You are here

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

Return an instance of the UserBlocks class.

Return value

UserBlocks

File

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

Class

Management

Namespace

Auth0\SDK\API

Code

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