You are here

public function Config::getRawData in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Config/Config.php \Drupal\Core\Config\Config::getRawData()
  2. 10 core/lib/Drupal/Core/Config/Config.php \Drupal\Core\Config\Config::getRawData()

Gets the raw data without overrides.

Return value

array The raw data.

File

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

Class

Config
Defines the default configuration object.

Namespace

Drupal\Core\Config

Code

public function getRawData() {
  return $this->data;
}