Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Config/Config.php \Drupal\Core\Config\Config::clear()
  2. 9 core/lib/Drupal/Core/Config/Config.php \Drupal\Core\Config\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\Config

Code

public function clear($key) {
  parent::clear($key);
  $this
    ->resetOverriddenData();
  return $this;
}