Auth0\SDK\API\Management::__construct PHP Метод

__construct() публичный Метод

public __construct ( $token, $domain, $guzzleOptions = [] )
    public function __construct($token, $domain, $guzzleOptions = [])
    {
        $this->token = $token;
        $this->domain = $domain;
        $this->guzzleOptions = $guzzleOptions;
        $this->setApiClient();
        $this->blacklists = new Blacklists($this->apiClient);
        $this->clients = new Clients($this->apiClient);
        $this->client_grants = new ClientGrants($this->apiClient);
        $this->connections = new Connections($this->apiClient);
        $this->deviceCredentials = new DeviceCredentials($this->apiClient);
        $this->emails = new Emails($this->apiClient);
        $this->jobs = new Jobs($this->apiClient);
        $this->logs = new Logs($this->apiClient);
        $this->rules = new Rules($this->apiClient);
        $this->resource_servers = new ResourceServers($this->apiClient);
        $this->stats = new Stats($this->apiClient);
        $this->tenants = new Tenants($this->apiClient);
        $this->tickets = new Tickets($this->apiClient);
        $this->userBlocks = new UserBlocks($this->apiClient);
        $this->users = new Users($this->apiClient);
    }