@@ -147,11 +147,7 @@ public function testThatGetSerializeContextMethodCallsExpectedServiceMethods():
147147 ->method ('getEntityName ' )
148148 ->willReturn ('FakeEntity ' );
149149
150- /**
151- * @phpstan-ignore-next-line
152- *
153- * @var InputBag<string> $parameterBag
154- */
150+ /** @var InputBag $parameterBag */
155151 $ request ->query = $ parameterBag ;
156152
157153 $ context = (new ResponseHandler ($ serializer ))
@@ -188,18 +184,10 @@ public function testThatGetSerializeContextSetExpectedGroupsWithPopulateAllParam
188184 ->method ('getEntityName ' )
189185 ->willReturn ('FakeEntity ' );
190186
191- /**
192- * @phpstan-ignore-next-line
193- *
194- * @var InputBag<string> $parameterBag
195- */
187+ /** @var InputBag $parameterBag */
196188 $ request ->query = $ parameterBag ;
197189
198- /**
199- * @phpstan-ignore-next-line
200- *
201- * @var InputBag<bool|float|int|string> $parameterBag
202- */
190+ /** @var InputBag $parameterBag */
203191 $ request ->request = $ parameterBag ;
204192
205193 $ context = (new ResponseHandler ($ serializer ))
@@ -241,18 +229,10 @@ public function testThatGetSerializeContextSetExpectedGroupsWithPopulateAllParam
241229 ->method ('getAssociations ' )
242230 ->willReturn (['AnotherFakeEntity ' ]);
243231
244- /**
245- * @phpstan-ignore-next-line
246- *
247- * @var InputBag<string> $parameterBag
248- */
232+ /** @var InputBag $parameterBag */
249233 $ request ->query = $ parameterBag ;
250234
251- /**
252- * @phpstan-ignore-next-line
253- *
254- * @var InputBag<bool|float|int|string> $parameterBag
255- */
235+ /** @var InputBag $parameterBag */
256236 $ request ->request = $ parameterBag ;
257237
258238 $ context = (new ResponseHandler ($ serializer ))
@@ -289,18 +269,10 @@ public function testThatGetSerializeContextSetExpectedGroupsWithPopulateOnlyPara
289269 ->method ('getEntityName ' )
290270 ->willReturn ('FakeEntity ' );
291271
292- /**
293- * @phpstan-ignore-next-line
294- *
295- * @var InputBag<string> $parameterBag
296- */
272+ /** @var InputBag $parameterBag */
297273 $ request ->query = $ parameterBag ;
298274
299- /**
300- * @phpstan-ignore-next-line
301- *
302- * @var InputBag<bool|float|int|string> $parameterBag
303- */
275+ /** @var InputBag $parameterBag */
304276 $ request ->request = $ parameterBag ;
305277
306278 $ context = (new ResponseHandler ($ serializer ))
@@ -337,18 +309,10 @@ public function testThatGetSerializeContextSetExpectedGroupsWithPopulateOnlyPara
337309 ->method ('getEntityName ' )
338310 ->willReturn ('FakeEntity ' );
339311
340- /**
341- * @phpstan-ignore-next-line
342- *
343- * @var InputBag<string> $parameterBag
344- */
312+ /** @var InputBag $parameterBag */
345313 $ request ->query = $ parameterBag ;
346314
347- /**
348- * @phpstan-ignore-next-line
349- *
350- * @var InputBag<bool|float|int|string> $parameterBag
351- */
315+ /** @var InputBag $parameterBag */
352316 $ request ->request = $ parameterBag ;
353317
354318 $ context = (new ResponseHandler ($ serializer ))
@@ -396,11 +360,7 @@ public function testThatGetSerializeContextReturnsExpectedWhenResourceHasGetSeri
396360 ->method ('getSerializerContext ' )
397361 ->willReturn ($ expected );
398362
399- /**
400- * @phpstan-ignore-next-line
401- *
402- * @var InputBag<string> $parameterBag
403- */
363+ /** @var InputBag $parameterBag */
404364 $ request ->query = $ parameterBag ;
405365
406366 self ::assertSame (
0 commit comments