Skip to content

Commit 67773cd

Browse files
committed
Fix: Skip part of OperatorSpacingSniff because its incorrect behavior in declare(strict_types=1);
1 parent 0551ba6 commit 67773cd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ecs.php

+5
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,11 @@
486486
// We allow empty catch statements (but they must have comment - see EmptyCatchCommentSniff)
487487
EmptyStatementSniff::class . '.DetectedCatch' => null,
488488

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+
489494
// Skip unwanted rules from DocCommentSniff
490495
DocCommentSniff::class . '.ContentAfterOpen' => null,
491496
DocCommentSniff::class . '.ContentBeforeClose' => null,

0 commit comments

Comments
 (0)