Skip to content

Commit

Permalink
Removed obsolote extends which caused an error
Browse files Browse the repository at this point in the history
  • Loading branch information
gossi committed Dec 8, 2013
1 parent f2fc463 commit bcc984a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/keeko/composer/KeekoComposerPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
namespace keeko\composer;

use Composer\Plugin\PluginInterface;
use Composer\Installer\LibraryInstaller;
use Composer\IO\IOInterface;
use Composer\Composer;

class KeekoComposerPlugin extends LibraryInstaller implements PluginInterface {
class KeekoComposerPlugin implements PluginInterface {

public function activate(Composer $composer, IOInterface $io) {
$installer = new KeekoComposerInstaller($io, $composer);
$composer->getInstallationManager()->addInstaller($installer);
}

}

0 comments on commit bcc984a

Please sign in to comment.