/** @var DummyPluginFinder $pluginFinder */
$pluginFinder =
$this->container->
get('dummy.plugin.finder'
);
foreach ($pluginFinder->
getDummyPlugins() as $plugin) { Utils::
cleanPath($plugin);
} } private function cleanupFiles() { /** @var CleanupFilesFinder $cleanupFilesFinder */
$cleanupFilesFinder =
$this->container->
get('cleanup.files.finder'
);
foreach ($cleanupFilesFinder->
getCleanupFiles() as $path) { Utils::
cleanPath($path);
} /** @var Cleanup $cleanup */
$cleanup =
$this->container->
get('shopware.update.cleanup'
);
$cleanup->
cleanup(false
);
} private function writeLockFile() { if (is_dir(SW_PATH . '/recovery/install'
)) {