Jordi Boggiano 13 년 전
부모
커밋
2b15c4321b
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/Composer/Installer/LibraryInstaller.php

+ 2 - 0
src/Composer/Installer/LibraryInstaller.php

@@ -28,6 +28,7 @@ class LibraryInstaller implements InstallerInterface
     private $directory;
     private $downloadManager;
     private $repository;
+    private $type;
 
     /**
      * Initializes library installer.
@@ -41,6 +42,7 @@ class LibraryInstaller implements InstallerInterface
     {
         $this->directory = $directory;
         $this->downloadManager = $dm;
+        $this->type = $type;
 
         if (!is_dir($this->directory)) {
             if (file_exists($this->directory)) {