public function ConfigImporter::reset

Resets the storage comparer and processed list.

Return value

\Drupal\Core\Config\ConfigImporter The ConfigImporter instance.

1 call to ConfigImporter::reset()
ConfigImporter::import in drupal/core/lib/Drupal/Core/Config/ConfigImporter.php
Imports the changelist to the target storage.

File

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

Class

ConfigImporter
Defines a configuration importer.

Namespace

Drupal\Core\Config

Code

public function reset() {
  $this->storageComparer
    ->reset();
  $this->processed = $this->storageComparer
    ->getEmptyChangelist();
  $this->validated = FALSE;
  return $this;
}