You are here

private function AcquiaLiftAPI::__construct in Acquia Lift Connector 7

Same name and namespace in other branches
  1. 7.2 includes/AcquiaLiftAPI.inc \AcquiaLiftAPI::__construct()

Private constructor as this is a singleton.

Parameters

string $api_key: A string representing an Acquia Lift API key.

string $admin_key: A string representing an Acquia Lift admin key.

string $owner_code: A string representing an Acquia Lift owner code.

string $api_url: A string representing an Acquia Lift API url.

File

includes/acquia_lift.classes.inc, line 283
Provides an agent type for Acquia Lift

Class

AcquiaLiftAPI
@file Provides an agent type for Acquia Lift

Code

private function __construct($api_key, $admin_key, $owner_code, $api_url) {
  $this->api_key = $api_key;
  $this->admin_key = $admin_key;
  $this->owner_code = $owner_code;
  $this->api_url = $api_url;
}