Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Config/Config.php \Drupal\Core\Config\Config::setData()
  2. 9 core/lib/Drupal/Core/Config/Config.php \Drupal\Core\Config\Config::setData()

Replaces the data of this configuration object.

Parameters

array $data: The new configuration data.

Return value

$this The configuration object.

Throws

\Drupal\Core\Config\ConfigValueException If any key in $data in any depth contains a dot.

Overrides ConfigBase::setData

File

core/lib/Drupal/Core/Config/Config.php, line 106

Class

Config
Defines the default configuration object.

Namespace

Drupal\Core\Config

Code

public function setData(array $data) {
  parent::setData($data);
  $this
    ->resetOverriddenData();
  return $this;
}