1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 16:42:57 +00:00

Plugins receive composer and io objects on construction already

This commit is contained in:
Nils Adermann 2013-08-14 18:47:25 +02:00
parent f00f5113bf
commit 9402a9fb3c
3 changed files with 14 additions and 6 deletions

View file

@ -22,9 +22,7 @@ use Composer\Composer;
interface PluginInterface
{
/**
* Apply plugin modifications to the passed in composer object
*
* @param Composer $composer
* Apply plugin modifications to composer
*/
public function activate(Composer $composer);
public function activate();
}