protected StorageComparer::removeFromChangelist($collection, $op, $name)
Removes the entry from the given operation changelist for the given name.
Parameters
string $collection: The storage collection to operate on.
string $op: The changelist to act on. Either delete, create, rename or update.
string $name: The name of the configuration to remove.
File
- core/lib/Drupal/Core/Config/StorageComparer.php, line 347
 
Class
- StorageComparer
 - Defines a config storage comparer.
 
Namespace
Drupal\Core\Config
Code
protected function removeFromChangelist($collection, $op, $name) {
  $key = array_search($name, $this->changelist[$collection][$op]);
  if ($key !== FALSE) {
    unset($this->changelist[$collection][$op][$key]);
  }
}
Please login to continue.