Skip to content

Commit b6b4942

Browse files
authored
Update AbstractResponse.php
1 parent 5c75c36 commit b6b4942

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Http/Message/AbstractResponse.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ public function __construct(string $json)
4444
* @param int $status
4545
* @param array $headers
4646
*
47-
* @return AbstractResponse
47+
* @return Response
4848
*/
49-
protected function instance(string $body, int $status = 200, array $headers = []) : AbstractResponse
49+
protected function instance(string $body, int $status = 200, array $headers = []) : Response
5050
{
5151
$response = new Response('php://memory', $status, $headers);
5252
$response->getBody()->write($body);

0 commit comments

Comments
 (0)