Pārlūkot izejas kodu

Merge remote-tracking branch 'till/download-fun'

Jordi Boggiano 13 gadi atpakaļ
vecāks
revīzija
edba29be45
1 mainītis faili ar 4 papildinājumiem un 0 dzēšanām
  1. 4 0
      src/Composer/Downloader/DownloadManager.php

+ 4 - 0
src/Composer/Downloader/DownloadManager.php

@@ -46,6 +46,7 @@ class DownloadManager
     public function setPreferSource($preferSource)
     {
         $this->preferSource = $preferSource;
+        return $this;
     }
 
     /**
@@ -56,7 +57,9 @@ class DownloadManager
      */
     public function setDownloader($type, DownloaderInterface $downloader)
     {
+        $type = strtolower($type);
         $this->downloaders[$type] = $downloader;
+        return $this;
     }
 
     /**
@@ -70,6 +73,7 @@ class DownloadManager
      */
     public function getDownloader($type)
     {
+        $type = strtolower($type);
         if (!isset($this->downloaders[$type])) {
             throw new \InvalidArgumentException('Unknown downloader type: '.$type);
         }