protected ConfigImporter::setProcessedConfiguration($collection, $op, $name)
Sets a change as processed.
Parameters
string $collection: The configuration collection to set a change as processed for.
string $op: The change operation performed, either delete, create, rename, or update.
string $name: The name of the configuration processed.
File
- core/lib/Drupal/Core/Config/ConfigImporter.php, line 309
Class
- ConfigImporter
- Defines a configuration importer.
Namespace
Drupal\Core\Config
Code
protected function setProcessedConfiguration($collection, $op, $name) { $this->processedConfiguration[$collection][$op][] = $name; }
Please login to continue.