File tree 4 files changed +2
-16
lines changed
4 files changed +2
-16
lines changed Original file line number Diff line number Diff line change @@ -303,7 +303,7 @@ public function testArrayAccessOfCookie(): void
303
303
$ this ->assertSame ($ cookie ['path ' ], $ cookie ->getPath ());
304
304
305
305
$ this ->expectException ('InvalidArgumentException ' );
306
- $ cookie ['expiry ' ];
306
+ $ cookie ['expiry ' ]; // @phpstan-ignore expr.resultUnused
307
307
}
308
308
309
309
public function testCannotSetPropertyViaArrayAccess (): void
Original file line number Diff line number Diff line change @@ -479,7 +479,7 @@ public function testCastTimestampException(): void
479
479
$ entity = $ this ->getCastEntity ();
480
480
$ entity ->ninth = 'some string ' ;
481
481
482
- $ entity ->ninth ;
482
+ $ entity ->ninth ; // @phpstan-ignore expr.resultUnused
483
483
}
484
484
485
485
public function testCastArray (): void
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ includes:
14
14
- deadCode.unreachable.neon
15
15
- empty.notAllowed.neon
16
16
- empty.property.neon
17
- - expr.resultUnused.neon
18
17
- function.alreadyNarrowedType.neon
19
18
- generator.valueType.neon
20
19
- isset.offset.neon
You can’t perform that action at this time.
0 commit comments