From 692404ce7e2ecad92022ed3896a0f8862e2c03d8 Mon Sep 17 00:00:00 2001 From: yiendos Date: Wed, 9 Dec 2020 12:40:45 +0000 Subject: [PATCH] #50: provide abstract methods required for api:20 --- src/Joomlatools/Composer/Plugin.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/Joomlatools/Composer/Plugin.php b/src/Joomlatools/Composer/Plugin.php index f20b405..ef8bd16 100644 --- a/src/Joomlatools/Composer/Plugin.php +++ b/src/Joomlatools/Composer/Plugin.php @@ -73,4 +73,14 @@ public function postAutoloadDump(Event $event) $extensionInstaller = new ExtensionInstaller($this->_io); $extensionInstaller->execute(); } + + public function uninstall(Composer $composer, IOInterface $io) + { + // TODO: Implement uninstall() method. + } + + public function deactivate(Composer $composer, IOInterface $io) + { + // TODO: Implement deactivate() method. + } } \ No newline at end of file