Type in comment
parent
7ccb91667f
commit
9fda8cdc84
|
@ -50,7 +50,7 @@ class GzipDownloader extends ArchiveDownloader
|
||||||
throw new \RuntimeException($processError);
|
throw new \RuntimeException($processError);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Gzip version of PHP has built-in support of gzip functions
|
// Windows version of PHP has built-in support of gzip functions
|
||||||
$archiveFile = gzopen($file, 'rb');
|
$archiveFile = gzopen($file, 'rb');
|
||||||
$targetFile = fopen($targetFilepath, 'wb');
|
$targetFile = fopen($targetFilepath, 'wb');
|
||||||
while ($string = gzread($archiveFile, 4096)) {
|
while ($string = gzread($archiveFile, 4096)) {
|
||||||
|
|
Loading…
Reference in New Issue