Skip to content

Commit

Permalink
#50: provide abstract methods required for api:20
Browse files Browse the repository at this point in the history
  • Loading branch information
yiendos committed Dec 9, 2020
1 parent 11849e3 commit 692404c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Joomlatools/Composer/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
}
}

0 comments on commit 692404c

Please sign in to comment.