function system_update_8002 in Drupal 8
Removes the system.filter configuration.
File
- core/
modules/ system/ system.install, line 1626 - Install, update and uninstall functions for the system module.
Code
function system_update_8002() {
\Drupal::configFactory()
->getEditable('system.filter')
->delete();
return t('The system.filter configuration has been moved to a container parameter, see default.services.yml for more information.');
}