From 2b15c4321b5a809d279c36f848e8cb6e14d39a92 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Sat, 22 Oct 2011 22:25:30 +0200 Subject: [PATCH] Typo fix --- src/Composer/Installer/LibraryInstaller.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Composer/Installer/LibraryInstaller.php b/src/Composer/Installer/LibraryInstaller.php index 99af14f6e..7f5b967be 100644 --- a/src/Composer/Installer/LibraryInstaller.php +++ b/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)) {