public function AcsfSite::__get in Acquia Cloud Site Factory Connector 8.2
Same name and namespace in other branches
- 8 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\acsfCode
public function __get($key) {
if (isset($this->info[$key])) {
return $this->info[$key];
}
}