You are here

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

Return an instance of the Connections class.

Return value

Connections

File

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

Class

Management

Namespace

Auth0\SDK\API

Code

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