diff --git a/src/johnpbloch/Composer/WordPressCorePlugin.php b/src/johnpbloch/Composer/WordPressCorePlugin.php index a6978b1..c27a330 100644 --- a/src/johnpbloch/Composer/WordPressCorePlugin.php +++ b/src/johnpbloch/Composer/WordPressCorePlugin.php @@ -38,11 +38,16 @@ public function activate( Composer $composer, IOInterface $io ) { $composer->getInstallationManager()->addInstaller( $installer ); } - public function deactivate(Composer $composer, IOInterface $io) - { - } + /** + * {@inheritDoc} + */ + public function deactivate( Composer $composer, IOInterface $io ) { + } + + /** + * {@inheritDoc} + */ + public function uninstall( Composer $composer, IOInterface $io ) { + } - public function uninstall(Composer $composer, IOInterface $io) - { - } }