function LanguageConfigOverride::delete
Deletes the configuration object.
Must invalidate the cache tags associated with the configuration object.
Return value
$this
Overrides StorableConfigBase::delete
File
- 
              core/modules/ language/ src/ Config/ LanguageConfigOverride.php, line 73 
Class
- LanguageConfigOverride
- Defines language configuration overrides.
Namespace
Drupal\language\ConfigCode
public function delete() {
  $this->data = [];
  $this->storage
    ->delete($this->name);
  Cache::invalidateTags($this->getCacheTags());
  $this->isNew = TRUE;
  $this->eventDispatcher
    ->dispatch(new LanguageConfigOverrideCrudEvent($this), LanguageConfigOverrideEvents::DELETE_OVERRIDE);
  $this->originalData = $this->data;
  return $this;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
