function Config::clear
Unsets a value in this configuration object.
Parameters
string $key: Name of the key whose value should be unset.
Return value
$this The configuration object.
Overrides ConfigBase::clear
1 method overrides Config::clear()
- ImmutableConfig::clear in core/lib/ Drupal/ Core/ Config/ ImmutableConfig.php 
- Unsets a value in this configuration object.
File
- 
              core/lib/ Drupal/ Core/ Config/ Config.php, line 192 
Class
- Config
- Defines the default configuration object.
Namespace
Drupal\Core\ConfigCode
public function clear($key) {
  parent::clear($key);
  $this->resetOverriddenData();
  return $this;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
