Skip to content

Commit

Permalink
Implement missing methods in interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Burge committed May 11, 2021
1 parent 873a40e commit ee6d733
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/Composer/Plugin/Dummy.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use Composer\IO\IOInterface;
use Composer\Plugin\PluginInterface;

abstract class Dummy implements PluginInterface
class Dummy implements PluginInterface
{
protected $composer;
protected $io;
Expand All @@ -20,4 +20,17 @@ public function activate(Composer $composer, IOInterface $io)
$this->composer = $composer;
$this->io = $io;
}

public function deactivate(Composer $composer, IOInterface $io)
{
$this->composer = $composer;
$this->io = $io;
}

public function uninstall(Composer $composer, IOInterface $io)
{
$this->composer = $composer;
$this->io = $io;
}

}

0 comments on commit ee6d733

Please sign in to comment.