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 4be6d5c commit 1f5454bCopy full SHA for 1f5454b
README.md
@@ -76,6 +76,12 @@ return ECSConfig::configure()
76
__DIR__ . '/vendor/lmc/coding-standard/ecs.php',
77
]
78
)
79
+ ->withRules(
80
+ [
81
+ // PHPUnit attributes must be used over their respective PHPDoc-based annotations. (Use with PHPUnit 10+.)
82
+ PhpUnitAttributesFixer::class,
83
+ ]
84
+ )
85
// Enforce line-length to 120 characters
86
->withConfiguredRule(LineLengthSniff::class, ['absoluteLineLimit' => 120])
87
// Tests must have @test annotation
0 commit comments