You are here

function blazy_update_8205 in Blazy 8.2

Removed deprecated or no longer in use classes, settings, etc.

File

./blazy.install, line 75
Installation actions for Blazy.

Code

function blazy_update_8205() {
  $config = \Drupal::configFactory()
    ->getEditable('blazy.settings');
  foreach ([
    'native',
    'unbreakpoints',
  ] as $key) {
    $config
      ->clear($key);
  }
  $config
    ->save(TRUE);
}