1
0
Fork 0

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

pull/539/head
Mike van Riel 2012-04-07 15:48:31 +02:00
parent 32e86ba410
commit a01366e3f5
1 changed files with 1 additions and 1 deletions

View File

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