diff --git a/composer.json.ci b/composer.json.ci index b8b4840..4fd7310 100644 --- a/composer.json.ci +++ b/composer.json.ci @@ -12,7 +12,7 @@ "magento/framework": "*" }, "type": "magento2-module", - "version": "100.2.1", + "version": "100.3.0", "autoload": { "files": [ "registration.php" diff --git a/ecs.php b/ecs.php index a618e62..a827fd9 100644 --- a/ecs.php +++ b/ecs.php @@ -5,6 +5,8 @@ use PhpCsFixer\Fixer\Import\NoUnusedImportsFixer; use Symplify\EasyCodingStandard\Config\ECSConfig; use Symplify\EasyCodingStandard\ValueObject\Set\SetList; +use PhpCsFixer\Fixer\Operator\NotOperatorWithSuccessorSpaceFixer; +use PhpCsFixer\Fixer\CastNotation\CastSpacesFixer; return function (ECSConfig $ecsConfig): void { $ecsConfig->paths([ @@ -32,4 +34,9 @@ SetList::PSR_12, SetList::SYMPLIFY ]); + + $ecsConfig->skip([ + NotOperatorWithSuccessorSpaceFixer::class, + CastSpacesFixer::class + ]); };