public function StorageComparer::getEmptyChangelist

public StorageComparer::getEmptyChangelist()

Gets an empty changelist.

Return value

array An empty changelist array.

Overrides StorageComparerInterface::getEmptyChangelist

File

core/lib/Drupal/Core/Config/StorageComparer.php, line 151

Class

StorageComparer
Defines a config storage comparer.

Namespace

Drupal\Core\Config

Code

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Config!StorageComparer.php/function/StorageComparer::getEmptyChangelist/8.1.x