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