Skip to content

Commit 0ca4de7

Browse files
Merge branch '4.4' into 5.2
* 4.4: Switched to non-null defaults in exception constructors [Routing] fix conflict with param named class in attribute [Cache] fix setting items' metadata on commit()
2 parents 1efa11a + df3209a commit 0ca4de7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Exception/HttpTransportException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class HttpTransportException extends TransportException
2020
{
2121
private $response;
2222

23-
public function __construct(string $message = null, ResponseInterface $response, int $code = 0, \Throwable $previous = null)
23+
public function __construct(?string $message, ResponseInterface $response, int $code = 0, \Throwable $previous = null)
2424
{
2525
parent::__construct($message, $code, $previous);
2626

0 commit comments

Comments
 (0)