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
1 2 3 4 5 6 7 8 | public function getEmptyChangelist() { return array ( 'create' => array (), 'update' => array (), 'delete' => array (), 'rename' => array (), ); } |
Please login to continue.