File tree Expand file tree Collapse file tree 4 files changed +2
-16
lines changed
Expand file tree Collapse file tree 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
303303 $ this ->assertSame ($ cookie ['path ' ], $ cookie ->getPath ());
304304
305305 $ this ->expectException ('InvalidArgumentException ' );
306- $ cookie ['expiry ' ];
306+ $ cookie ['expiry ' ]; // @phpstan-ignore expr.resultUnused
307307 }
308308
309309 public function testCannotSetPropertyViaArrayAccess (): void
Original file line number Diff line number Diff line change @@ -479,7 +479,7 @@ public function testCastTimestampException(): void
479479 $ entity = $ this ->getCastEntity ();
480480 $ entity ->ninth = 'some string ' ;
481481
482- $ entity ->ninth ;
482+ $ entity ->ninth ; // @phpstan-ignore expr.resultUnused
483483 }
484484
485485 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:
1414 - deadCode.unreachable.neon
1515 - empty.notAllowed.neon
1616 - empty.property.neon
17- - expr.resultUnused.neon
1817 - function.alreadyNarrowedType.neon
1918 - generator.valueType.neon
2019 - isset.offset.neon
You can’t perform that action at this time.
0 commit comments