Skip to content

Commit

Permalink
Composer 2.0 - missing methods added
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Stark committed Oct 24, 2020
1 parent 58ae6b7 commit f434289
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,19 @@ protected function hasProjectConfigFile(): bool
return (file_exists($pathToConfigFile) || is_dir($pathToConfigDir)) ? true : false;
}

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

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

0 comments on commit f434289

Please sign in to comment.