Skip to content

Commit c8bbe6a

Browse files
committed
Ignore phpstan withConsecutive deprecation for now
1 parent 218d27c commit c8bbe6a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/Http/ClientTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ public function testClientHasDefaultUserAgent(): void
212212
$reqFactory = $this->createMock(RequestFactoryInterface::class);
213213
$requestStub = $this->createMock(RequestInterface::class);
214214

215+
/* @phpstan-ignore-next-line */
215216
$requestStub->expects($this->any())
216217
->method('withAddedHeader')
217218
->withConsecutive(
@@ -242,6 +243,7 @@ public function testClientHasCustomUserAgent(): void
242243
$reqFactory = $this->createMock(RequestFactoryInterface::class);
243244
$requestStub = $this->createMock(RequestInterface::class);
244245

246+
/* @phpstan-ignore-next-line */
245247
$requestStub->expects($this->any())
246248
->method('withAddedHeader')
247249
->withConsecutive(
@@ -271,6 +273,7 @@ public function testClientHasEmptyCustomUserAgentArray(): void
271273
$reqFactory = $this->createMock(RequestFactoryInterface::class);
272274
$requestStub = $this->createMock(RequestInterface::class);
273275

276+
/* @phpstan-ignore-next-line */
274277
$requestStub->expects($this->any())
275278
->method('withAddedHeader')
276279
->withConsecutive(

0 commit comments

Comments
 (0)