We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
declare(strict_types=1);
1 parent 0551ba6 commit 67773cdCopy full SHA for 67773cd
ecs.php
@@ -486,6 +486,11 @@
486
// We allow empty catch statements (but they must have comment - see EmptyCatchCommentSniff)
487
EmptyStatementSniff::class . '.DetectedCatch' => null,
488
489
+ // Skip because of its attempts to add spaces in declare(strict_types=1); starting with ECS 12.2.0
490
+ // @TODO: In future ECS versions try whether its is still broken or this skip could be removed
491
+ OperatorSpacingSniff::class . '.NoSpaceAfter' => null,
492
+ OperatorSpacingSniff::class . '.NoSpaceBefore' => null,
493
+
494
// Skip unwanted rules from DocCommentSniff
495
DocCommentSniff::class . '.ContentAfterOpen' => null,
496
DocCommentSniff::class . '.ContentBeforeClose' => null,
0 commit comments