config = $config; } public function getName(): string { return 'Clean up abandoned apps'; } public function run(IOutput $output): void { foreach (self::ABANDONED_APPS as $app) { // only remove global app values // user prefs of accessibility are dealt with in Theming migration // videoplayer did not have user prefs $this->config->deleteAppValues($app); } } }