Преглед изворни кода

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

Mike van Riel пре 13 година
родитељ
комит
a01366e3f5
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/Composer/Installer/InstallerInstaller.php

+ 1 - 1
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);
     }
 }