@@ -368,7 +368,7 @@ discard block |
||
| 368 | 368 | * |
| 369 | 369 | * @return void |
| 370 | 370 | */ |
| 371 | - private function downloadChunk(DownloadResult &$result, HttpOptions $options, array $input): void |
|
| 371 | + private function downloadChunk(DownloadResult&$result, HttpOptions $options, array $input): void |
|
| 372 | 372 | { |
| 373 | 373 | $options->setCurlOptions([ |
| 374 | 374 | CURLOPT_RANGE => $input['range'] |
@@ -398,7 +398,7 @@ discard block |
||
| 398 | 398 | ] |
| 399 | 399 | ]); |
| 400 | 400 | |
| 401 | - return (int)$response->getHeaderLine('Content-Length') ?? 0; |
|
| 401 | + return (int) $response->getHeaderLine('Content-Length') ?? 0; |
|
| 402 | 402 | } |
| 403 | 403 | |
| 404 | 404 | /** |