You are here

public function ConfigImporter::getProcessedConfiguration in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Config/ConfigImporter.php \Drupal\Core\Config\ConfigImporter::getProcessedConfiguration()

Gets list of processed changes.

Parameters

string $collection: (optional) The configuration collection to get processed changes for. Defaults to the default collection.

Return value

array An array containing a list of processed changes.

File

core/lib/Drupal/Core/Config/ConfigImporter.php, line 300
Contains \Drupal\Core\Config\ConfigImporter.

Class

ConfigImporter
Defines a configuration importer.

Namespace

Drupal\Core\Config

Code

public function getProcessedConfiguration($collection = StorageInterface::DEFAULT_COLLECTION) {
  return $this->processedConfiguration[$collection];
}