From a01366e3f577ccaf46a2653b973853b8df906538 Mon Sep 17 00:00:00 2001 From: Mike van Riel Date: Sat, 7 Apr 2012 15:48:31 +0200 Subject: [PATCH] Added ->io to the creation of composer installers to match signature of LibraryInstaller; this will enable users to extend LibraryInstaller and use the same facilities --- src/Composer/Installer/InstallerInstaller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Installer/InstallerInstaller.php b/src/Composer/Installer/InstallerInstaller.php index 520bde273..a43d0f15a 100644 --- a/src/Composer/Installer/InstallerInstaller.php +++ b/src/Composer/Installer/InstallerInstaller.php @@ -97,7 +97,7 @@ class InstallerInstaller extends LibraryInstaller } $extra = $package->getExtra(); - $installer = new $class($this->vendorDir, $this->binDir, $this->downloadManager, $this->repository); + $installer = new $class($this->vendorDir, $this->binDir, $this->downloadManager, $this->repository, $this->io); $this->installationManager->addInstaller($installer); } }