protected function ConfigImporter::setProcessed

Sets a change as processed.

Parameters

string $op: The change operation performed, either delete, create or update.

string $name: The name of the configuration processed.

2 calls to ConfigImporter::setProcessed()
ConfigImporter::importConfig in drupal/core/lib/Drupal/Core/Config/ConfigImporter.php
Writes an array of config changes from the source to the target storage.
ConfigImporter::importInvokeOwner in drupal/core/lib/Drupal/Core/Config/ConfigImporter.php
Invokes import* methods on configuration entity storage controllers.

File

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

Class

ConfigImporter
Defines a configuration importer.

Namespace

Drupal\Core\Config

Code

protected function setProcessed($op, $name) {
  $this->processed[$op][] = $name;
}