@@ -78,6 +78,8 @@ public function testSupportsInvalid(): void
78
78
public function testInvalidatePath (): void
79
79
{
80
80
/** @var MockInterface&PurgeCapable $purge */
81
+ // https://github.com/phpstan/phpstan-mockery/issues/8
82
+ /** @phpstan-ignore-next-line */
81
83
$ purge = \Mockery::mock (PurgeCapable::class)
82
84
->shouldReceive ('purge ' )->once ()->with ('/my/route ' , [])
83
85
->shouldReceive ('purge ' )->once ()->with ('/my/route ' , ['X-Test-Header ' => 'xyz ' ])
@@ -97,6 +99,8 @@ public function testRefreshPath(): void
97
99
{
98
100
$ headers = ['X ' => 'Y ' ];
99
101
/** @var MockInterface&RefreshCapable $refresh */
102
+ // https://github.com/phpstan/phpstan-mockery/issues/8
103
+ /** @phpstan-ignore-next-line */
100
104
$ refresh = \Mockery::mock (RefreshCapable::class)
101
105
->shouldReceive ('refresh ' )->once ()->with ('/my/route ' , $ headers )
102
106
->shouldReceive ('flush ' )->never ()
@@ -190,6 +194,8 @@ public function testProxyClientExceptionsAreLogged(): void
190
194
191
195
$ unreachableException = ProxyUnreachableException::proxyUnreachable ($ clientException );
192
196
197
+ // https://github.com/phpstan/phpstan-mockery/issues/8
198
+ /** @phpstan-ignore-next-line */
193
199
$ response = \Mockery::mock (ResponseInterface::class)
194
200
->shouldReceive ('getStatusCode ' )->andReturn (403 )
195
201
->shouldReceive ('getReasonPhrase ' )->andReturn ('Forbidden ' )
@@ -206,6 +212,8 @@ public function testProxyClientExceptionsAreLogged(): void
206
212
207
213
$ cacheInvalidator = new CacheInvalidator ($ proxyClient );
208
214
215
+ // https://github.com/phpstan/phpstan-mockery/issues/8
216
+ /** @phpstan-ignore-next-line */
209
217
$ logger = \Mockery::mock (LoggerInterface::class)
210
218
->shouldReceive ('log ' )->once ()
211
219
->with (
0 commit comments