You are here

public function AcsfSite::__get in Acquia Cloud Site Factory Connector 8

Same name and namespace in other branches
  1. 8.2 src/AcsfSite.php \Drupal\acsf\AcsfSite::__get()

Class overloading __get().

Parameters

string $key: The key of the internal storage to look up.

Return value

mixed The value of the key.

File

src/AcsfSite.php, line 107

Class

AcsfSite
AcsfSite.

Namespace

Drupal\acsf

Code

public function __get($key) {
  if (isset($this->info[$key])) {
    return $this->info[$key];
  }
}