1
0
Fork 0

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

pull/716/head
Jordi Boggiano 2012-05-18 16:08:57 +02:00
commit edba29be45
1 changed files with 4 additions and 0 deletions

View File

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