@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | ); |
144 | 144 | |
145 | 145 | // Check if the requested file exists via HEAD |
146 | - $existsCheck = CurlClient::curlHead($remotePharDownloadUrl); |
|
146 | + $existsCheck = CurlClient::curlHead($remotePharDownloadUrl); |
|
147 | 147 | if (!$existsCheck->success) { |
148 | 148 | throw new RuntimeException( |
149 | 149 | sprintf('Requested version "%s" could not be found at %s', $requestedVersion, $remotePharDownloadUrl) |
@@ -367,7 +367,7 @@ discard block |
||
367 | 367 | if ($attempt >= $maxRetries) { |
368 | 368 | // Extract HTTP status code from error message if present |
369 | 369 | if (preg_match('/HTTP (\d+)/', $e->getMessage(), $matches)) { |
370 | - $statusCode = (int)$matches[1]; |
|
370 | + $statusCode = (int) $matches[1]; |
|
371 | 371 | // For HTTP 200-299 range, provide a clearer error message |
372 | 372 | if ($statusCode >= 200 && $statusCode < 300) { |
373 | 373 | throw new RuntimeException("Download failed after {$maxRetries} attempts despite receiving HTTP {$statusCode} (OK) responses. Check network connectivity and file integrity."); |
@@ -386,7 +386,7 @@ discard block |
||
386 | 386 | */ |
387 | 387 | private function getRemoteFileSize(OutputInterface $output, string $remoteUrl): int |
388 | 388 | { |
389 | - $head = CurlClient::curlHead($remoteUrl, [], [ |
|
389 | + $head = CurlClient::curlHead($remoteUrl, [], [ |
|
390 | 390 | 'timeout' => 20, |
391 | 391 | 'connect_timeout' => 10, |
392 | 392 | ]); |
@@ -496,7 +496,7 @@ discard block |
||
496 | 496 | // Check for "transfer closed with X bytes remaining to read" error |
497 | 497 | if (preg_match('/transfer closed with (\d+) bytes remaining to read/', $msg, $matches)) { |
498 | 498 | $isTransferClosedError = true; |
499 | - $bytesRemaining = (int)$matches[1]; |
|
499 | + $bytesRemaining = (int) $matches[1]; |
|
500 | 500 | $output->writeln("<comment>Transfer closed error detected: $bytesRemaining bytes remaining</comment>"); |
501 | 501 | $output->writeln("<comment>This is likely due to a network interruption or server timeout.</comment>"); |
502 | 502 | } |