public function AcsfSite::__unset in Acquia Cloud Site Factory Connector 8.2
Same name and namespace in other branches
- 8 src/AcsfSite.php \Drupal\acsf\AcsfSite::__unset()
Class overloading __unset().
Parameters
string $key: The key of the internal storage to unset.
File
- src/
AcsfSite.php, line 132
Class
- AcsfSite
- AcsfSite.
Namespace
Drupal\acsfCode
public function __unset($key) {
if (isset($this->info[$key])) {
unset($this->info[$key]);
}
}