We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80b7897 commit ed0106eCopy full SHA for ed0106e
rector.php
@@ -13,13 +13,18 @@
13
])
14
->withPhpSets()
15
->withPreparedSets(
16
- codeQuality: true,
17
deadCode: true,
+ codeQuality: true,
18
typeDeclarations: true,
19
- # typeDeclarationDocblocks: true, # Adds some incorrect doc blocks in interface implementation
20
privatization: true,
+ # typeDeclarationDocblocks: true, # Adds some incorrect doc blocks in interface implementation
21
+ instanceOf: true,
22
earlyReturn: true,
23
phpunitCodeQuality: true,
24
)
25
->withImportNames(importShortClasses: false, removeUnusedImports: true)
26
+ ->withAttributesSets(phpunit: true)
27
+ ->withComposerBased(phpunit: true)
28
+ ->withTreatClassesAsFinal()
29
+ ->withFluentCallNewLine()
30
;
0 commit comments