markComponentSuccessfullyUninstalled() public method

Marks a component as successfully uninstalled. Deletes an option that looks like "version_$componentName".
public markComponentSuccessfullyUninstalled ( string $name )
$name string The component name. Eg, a plugin name, `'core'` or dimension column name.
Exemplo n.º 1
0
 private function removeInstalledVersionFromOptionTable($name)
 {
     $updater = new Updater();
     $updater->markComponentSuccessfullyUninstalled($name);
 }