protected function Config::resetOverriddenData

Resets the current data, so overrides are re-applied.

This method should be called after the original data or the overridden data has been changed.

Return value

Drupal\Core\Config\Config The configuration object.

5 calls to Config::resetOverriddenData()

File

drupal/core/lib/Drupal/Core/Config/Config.php, line 302
Definition of Drupal\Core\Config\Config.

Class

Config
Defines the default configuration object.

Namespace

Drupal\Core\Config

Code

protected function resetOverriddenData() {
  unset($this->overriddenData);
  return $this;
}