Skip to content

Commit 6d78fe8

Browse files
committed
Fix @var phpdoc
1 parent 6f2691f commit 6d78fe8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Response/AmpResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ private static function generateResponse(Request $request, AmpClientState $multi
222222
});
223223

224224
try {
225-
/* @var Response $response */
225+
/** @var Response $response */
226226
if (null === $response = yield from self::getPushedResponse($request, $multi, $info, $headers, $options, $logger)) {
227227
$logger?->info(\sprintf('Request: "%s %s"', $info['http_method'], $info['url']));
228228

Tests/MockHttpClientTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ public function testHttp2PushVulcainWithUnusedResponse()
501501

502502
public function testChangeResponseFactory()
503503
{
504-
/* @var MockHttpClient $client */
504+
/** @var MockHttpClient $client */
505505
$client = $this->getHttpClient(__METHOD__);
506506
$expectedBody = '{"foo": "bar"}';
507507
$client->setResponseFactory(new MockResponse($expectedBody));

0 commit comments

Comments
 (0)