Add missing method from interface

This commit is contained in:
Maxime Rainville 2020-04-24 10:24:24 +12:00
parent ac9fe9aeab
commit b41b8adbc7
1 changed files with 11 additions and 0 deletions

View File

@ -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)
{
}
}