public ConfigImporter::getProcessedConfiguration($collection = StorageInterface::DEFAULT_COLLECTION)
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 295
Class
- ConfigImporter
- Defines a configuration importer.
Namespace
Drupal\Core\Config
Code
public function getProcessedConfiguration($collection = StorageInterface::DEFAULT_COLLECTION) { return $this->processedConfiguration[$collection]; }
Please login to continue.