From b41b8adbc7729e2b95509bbc2cb1150f1a1834bd Mon Sep 17 00:00:00 2001 From: Maxime Rainville Date: Fri, 24 Apr 2020 10:24:24 +1200 Subject: [PATCH] Add missing method from interface --- src/RecipePlugin.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/RecipePlugin.php b/src/RecipePlugin.php index 2e9e716..ecdc3fe 100644 --- a/src/RecipePlugin.php +++ b/src/RecipePlugin.php @@ -133,4 +133,15 @@ class RecipePlugin implements PluginInterface, EventSubscriberInterface, Capable CommandProvider::class => RecipeCommandProvider::class ]; } + + + public function deactivate(Composer $composer, IOInterface $io) + { + + } + + public function uninstall(Composer $composer, IOInterface $io) + { + + } }