File tree 2 files changed +9
-4
lines changed
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 58
58
'PhanAccessOverridesFinalConstant ' ,
59
59
'PhanDeprecatedClass ' ,
60
60
'PhanDeprecatedClassConstant ' ,
61
+ 'PhanParamTooFewInternal ' , // calls to "exit" in PHP 8.4???
61
62
],
62
63
];
Original file line number Diff line number Diff line change @@ -70,10 +70,14 @@ public function testOutputGetResource():void{
70
70
71
71
$ actual = $ this ->outputInterface ->dump ();
72
72
73
- /** @noinspection PhpFullyQualifiedNameUsageInspection */
74
- PHP_MAJOR_VERSION >= 8
75
- ? $ this ::assertInstanceOf (\GdImage::class, $ actual )
76
- : $ this ::assertIsResource ($ actual );
73
+ if (PHP_MAJOR_VERSION >= 8 ){
74
+ /** @noinspection PhpFullyQualifiedNameUsageInspection */
75
+ $ this ::assertInstanceOf (\GdImage::class, $ actual ); // phpcs:ignore
76
+
77
+ return ;
78
+ }
79
+
80
+ $ this ::assertIsResource ($ actual );
77
81
}
78
82
79
83
public function testBase64MimeType ():void {
You can’t perform that action at this time.
0 commit comments