- Added default list array items on HTTP header

This commit is contained in:
Dave M. 2023-11-17 08:19:49 -05:00
parent bea01badb7
commit 5b44e7508e
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ abstract class CurlTransport {
$response = $response->withHeader($key, $value);
}
elseif ( strtoupper(substr($headerLine, 0, 4)) === 'HTTP' ) {
list(,$code, $status) = explode(' ', trim($headerLine), 3);
list(,$code, $status) = explode(' ', trim($headerLine), 3) + [ null, null, null ];
$response = $response->withStatus($code, $status);
}