We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6bedfd commit c254d3bCopy full SHA for c254d3b
src/Symfony/Component/Messenger/Bridge/AmazonSqs/Tests/Transport/AmazonSqsTransportTest.php
@@ -179,6 +179,7 @@ private function createHttpException(): HttpException
179
{
180
$response = $this->createMock(ResponseInterface::class);
181
$response->method('getInfo')->with('http_code')->willReturn(500);
182
+ $response->method('getInfo')->with('url')->willReturn('https://symfony.com');
183
184
return new ServerException($response);
185
}
0 commit comments