|
64 | 64 | use PhpCsFixer\Fixer\ClassNotation\SingleTraitInsertPerStatementFixer; |
65 | 65 | use PhpCsFixer\Fixer\ClassNotation\VisibilityRequiredFixer; |
66 | 66 | use PhpCsFixer\Fixer\Comment\NoEmptyCommentFixer; |
67 | | -use PhpCsFixer\Fixer\Comment\SingleLineCommentSpacingFixer; |
68 | 67 | use PhpCsFixer\Fixer\ControlStructure\NoUnneededControlParenthesesFixer; |
69 | 68 | use PhpCsFixer\Fixer\ControlStructure\NoUselessElseFixer; |
70 | 69 | use PhpCsFixer\Fixer\ControlStructure\SwitchContinueToBreakFixer; |
|
148 | 147 | use PhpCsFixer\Fixer\Strict\DeclareStrictTypesFixer; |
149 | 148 | use PhpCsFixer\Fixer\Strict\StrictComparisonFixer; |
150 | 149 | use PhpCsFixer\Fixer\Strict\StrictParamFixer; |
151 | | -use PhpCsFixer\Fixer\StringNotation\MultilineStringToHeredocFixer; |
152 | 150 | use PhpCsFixer\Fixer\StringNotation\SimpleToComplexStringVariableFixer; |
153 | 151 | use PhpCsFixer\Fixer\StringNotation\SingleQuoteFixer; |
154 | 152 | use PhpCsFixer\Fixer\Whitespace\ArrayIndentationFixer; |
|
283 | 281 | SingleTraitInsertPerStatementFixer::class, |
284 | 282 | // There should not be any empty comments |
285 | 283 | NoEmptyCommentFixer::class, |
286 | | - // Single-line comments must have proper spacing. |
287 | | - SingleLineCommentSpacingFixer::class, |
288 | 284 | // There should not be useless `else` cases |
289 | 285 | NoUselessElseFixer::class, |
290 | 286 | // Switch case must not be ended with `continue` but with `break`. |
|
417 | 413 | StrictParamFixer::class, |
418 | 414 | // Comparisons should be strict, `===` or `!==` must be used for comparisons |
419 | 415 | StrictComparisonFixer::class, |
420 | | - // Convert multiline string to heredoc or nowdoc. |
421 | | - MultilineStringToHeredocFixer::class, |
422 | 416 | // Converts explicit variables in double-quoted strings from simple to complex format (${ to {$). |
423 | 417 | SimpleToComplexStringVariableFixer::class, |
424 | 418 | // Convert double quotes to single quotes for simple strings |
|
0 commit comments