1
0
Fork 0

useless if, condition il already true

pull/6159/head
Guillaume ZITTA 2017-02-13 13:43:36 +01:00
parent 363bab90fa
commit 374ada6914
1 changed files with 7 additions and 3 deletions

View File

@ -59,6 +59,12 @@ class ZipDownloader extends ArchiveDownloader
return parent::download($package, $path, $output); return parent::download($package, $path, $output);
} }
/*
* extract $file to $path
*
* @param string $file File to extract
* @param string $path Path where to extract file
*/
protected function extract($file, $path) protected function extract($file, $path)
{ {
$processError = null; $processError = null;
@ -79,9 +85,7 @@ class ZipDownloader extends ArchiveDownloader
$processError = 'Failed to execute ' . $command . "\n\n" . $e->getMessage(); $processError = 'Failed to execute ' . $command . "\n\n" . $e->getMessage();
} }
if (!class_exists('ZipArchive')) { throw new \RuntimeException($processError);
throw new \RuntimeException($processError);
}
} }
$zipArchive = new ZipArchive(); $zipArchive = new ZipArchive();