We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffd9d00 commit 41d7e6bCopy full SHA for 41d7e6b
src/coding_style.php
@@ -74,7 +74,6 @@
74
SingleLineEmptyBodyFixer::class,
75
CastSpacesFixer::class,
76
TypeDeclarationSpacesFixer::class,
77
- TypesSpacesFixer::class,
78
// Casing
79
ClassReferenceNameCasingFixer::class,
80
LowercaseStaticReferenceFixer::class,
@@ -115,6 +114,7 @@
115
114
StatementIndentationFixer::class,
116
]);
117
+ $ecsConfig->ruleWithConfiguration(TypesSpacesFixer::class, ['space' => 'single', 'space_multiple_catch' => 'single']);
118
$ecsConfig->ruleWithConfiguration(ArraySyntaxFixer::class, ['syntax' => 'short']);
119
$ecsConfig->ruleWithConfiguration(LineLengthFixer::class, [LineLengthFixer::LINE_LENGTH => 120]);
120
$ecsConfig->ruleWithConfiguration(
0 commit comments