public function AcsfSite::__isset in Acquia Cloud Site Factory Connector 8
Same name and namespace in other branches
- 8.2 src/AcsfSite.php \Drupal\acsf\AcsfSite::__isset()
Class overloading __isset().
Parameters
string $key: The key of the internal storage to look up.
Return value
bool TRUE if there is a value is set for the key.
File
- src/
AcsfSite.php, line 122
Class
- AcsfSite
- AcsfSite.
Namespace
Drupal\acsfCode
public function __isset($key) {
return isset($this->info[$key]);
}