public function StorageComparer::createChangelist

Add differences between source and target configuration storage to changelist.

Return value

\Drupal\Core\Config\StorageComparerInterface An object which implements the StorageComparerInterface.

Overrides StorageComparerInterface::createChangelist

1 call to StorageComparer::createChangelist()
StorageComparer::reset in drupal/core/lib/Drupal/Core/Config/StorageComparer.php
Recalculates the differences.

File

drupal/core/lib/Drupal/Core/Config/StorageComparer.php, line 116
Contains \Drupal\Core\Config\StorageComparer.

Class

StorageComparer
Defines a config storage comparer.

Namespace

Drupal\Core\Config

Code

public function createChangelist() {
  return $this
    ->addChangelistCreate()
    ->addChangelistUpdate()
    ->addChangelistDelete();
}