Skip to content

Commit 3b57d99

Browse files
committed
Merge branch '6.0' into 6.1
* 6.0: Fix CS Fix CS
2 parents 4a05752 + 297e596 commit 3b57d99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Response/CurlResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ private static function perform(ClientState $multi, array &$responses = null): v
319319
$id = (int) $ch = $info['handle'];
320320
$waitFor = @curl_getinfo($ch, \CURLINFO_PRIVATE) ?: '_0';
321321

322-
if (\in_array($result, [\CURLE_SEND_ERROR, \CURLE_RECV_ERROR, /*CURLE_HTTP2*/ 16, /*CURLE_HTTP2_STREAM*/ 92], true) && $waitFor[1] && 'C' !== $waitFor[0]) {
322+
if (\in_array($result, [\CURLE_SEND_ERROR, \CURLE_RECV_ERROR, /* CURLE_HTTP2 */ 16, /* CURLE_HTTP2_STREAM */ 92], true) && $waitFor[1] && 'C' !== $waitFor[0]) {
323323
curl_multi_remove_handle($multi->handle, $ch);
324324
$waitFor[1] = (string) ((int) $waitFor[1] - 1); // decrement the retry counter
325325
curl_setopt($ch, \CURLOPT_PRIVATE, $waitFor);

0 commit comments

Comments
 (0)