public function StorageComparer::getEmptyChangelist

Gets an empty changelist.

Return value

array An empty changelist array.

Overrides StorageComparerInterface::getEmptyChangelist

2 calls to StorageComparer::getEmptyChangelist()
StorageComparer::reset in drupal/core/lib/Drupal/Core/Config/StorageComparer.php
Recalculates the differences.
StorageComparer::__construct in drupal/core/lib/Drupal/Core/Config/StorageComparer.php
Constructs the Configuration storage comparer.

File

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

Class

StorageComparer
Defines a config storage comparer.

Namespace

Drupal\Core\Config

Code

public function getEmptyChangelist() {
  return array(
    'create' => array(),
    'update' => array(),
    'delete' => array(),
  );
}