function StorageComparer::removeFromChangelist
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.
2 calls to StorageComparer::removeFromChangelist()
- StorageComparer::addChangelistRename in core/
lib/ Drupal/ Core/ Config/ StorageComparer.php  - Creates the rename changelist.
 - StorageComparer::moveRenameToUpdate in core/
lib/ Drupal/ Core/ Config/ StorageComparer.php  - Moves a rename operation to an update.
 
File
- 
              core/
lib/ Drupal/ Core/ Config/ StorageComparer.php, line 344  
Class
- StorageComparer
 - Defines a config storage comparer.
 
Namespace
Drupal\Core\ConfigCode
protected function removeFromChangelist($collection, $op, $name) {
  $key = array_search($name, $this->changelist[$collection][$op]);
  if ($key !== FALSE) {
    unset($this->changelist[$collection][$op][$key]);
  }
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.