File tree Expand file tree Collapse file tree 3 files changed +23
-1
lines changed
Expand file tree Collapse file tree 3 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 1717 "require-dev" : {
1818 "amphp/php-cs-fixer-config" : " ^2" ,
1919 "phpunit/phpunit" : " ^9" ,
20- "psalm/phar" : " 5.23 "
20+ "psalm/phar" : " 6.15.1 "
2121 },
2222 "autoload" : {
2323 "psr-4" : {
Original file line number Diff line number Diff line change 1212 <directory name =" vendor" />
1313 </ignoreFiles >
1414 </projectFiles >
15+
16+ <issueHandlers >
17+ <ClassMustBeFinal >
18+ <errorLevel type =" suppress" >
19+ <directory name =" src" />
20+ </errorLevel >
21+ </ClassMustBeFinal >
22+
23+ <PossiblyUnusedMethod >
24+ <errorLevel type =" suppress" >
25+ <directory name =" src" />
26+ </errorLevel >
27+ </PossiblyUnusedMethod >
28+
29+ <UnusedClass >
30+ <errorLevel type =" suppress" >
31+ <directory name =" src" />
32+ </errorLevel >
33+ </UnusedClass >
34+ </issueHandlers >
1535</psalm >
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ enum SqlTransactionIsolationLevel implements SqlTransactionIsolation
99 case Repeatable;
1010 case Serializable;
1111
12+ #[\Override]
1213 public function getLabel (): string
1314 {
1415 return match ($ this ) {
@@ -19,6 +20,7 @@ public function getLabel(): string
1920 };
2021 }
2122
23+ #[\Override]
2224 public function toSql (): string
2325 {
2426 return match ($ this ) {
You can’t perform that action at this time.
0 commit comments