Skip to content

Commit b042818

Browse files
authored
Fix(CI): rector (#53)
1 parent c294f7a commit b042818

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

rector.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,10 @@
5050
->withRootFiles()
5151
->withParallel(timeoutSeconds: 300)
5252
->withImportNames(removeUnusedImports: true)
53-
->withDeadCodeLevel(100)
54-
->withCodeQualityLevel(100)
55-
->withCodingStyleLevel(100)
53+
->withPreparedSets(
54+
deadCode: true,
55+
codeQuality: true,
56+
codingStyle: true,
57+
)
5658
->withPhpSets(php82: true) // apply PHP sets up to PHP 8.2
5759
;

0 commit comments

Comments
 (0)