Skip to content

Commit

Permalink
Update Plugin.php
Browse files Browse the repository at this point in the history
  • Loading branch information
funkjedi authored Jun 25, 2020
1 parent 4ccfacc commit 7e4f8ec
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Plugin implements PluginInterface, EventSubscriberInterface
/**
* Apply plugin modifications to Composer
*
* @param Composer $composer
* @param Composer $composer
* @param IOInterface $io
*/
public function activate(Composer $composer, IOInterface $io)
Expand All @@ -33,25 +33,25 @@ public function activate(Composer $composer, IOInterface $io)
$this->generator = new AutoloadGenerator($composer->getEventDispatcher(), $io);
}

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

}

/**
* @param Composer $composer
* @param IOInterface $io
*/
public function uninstall(Composer $composer, IOInterface $io)
{
/**
* @param Composer $composer
* @param IOInterface $io
*/
public function deactivate(Composer $composer, IOInterface $io)
{
// do nothing
}

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

/**
/**
* @return array
*/
public static function getSubscribedEvents()
Expand Down

0 comments on commit 7e4f8ec

Please sign in to comment.