Skip to content

Commit

Permalink
fix(plugin): Add new abstract methods
Browse files Browse the repository at this point in the history
Mandatory since Composer 2.0
  • Loading branch information
gaetan-hexadog committed Oct 25, 2020
1 parent b46b052 commit d76c40e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/ThemeInstallerPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,20 @@ public function activate(Composer $composer, IOInterface $io)

$composer->getInstallationManager()->addInstaller($installer);
}

/**
* {@inheritdoc}
*/
public function deactivate(Composer $composer, IOInterface $io)
{
//
}

/**
* {@inheritdoc}
*/
public function uninstall(Composer $composer, IOInterface $io)
{
//
}
}

0 comments on commit d76c40e

Please sign in to comment.