diff --git a/src/RuleSet/Sets/Relax.php b/src/RuleSet/Sets/Relax.php index e8b0746..e932593 100644 --- a/src/RuleSet/Sets/Relax.php +++ b/src/RuleSet/Sets/Relax.php @@ -51,7 +51,6 @@ public function mainRules(): array Fixer\PhpdocNoSuperfluousParamFixer::name() => true, Fixer\PhpdocParamTypeFixer::name() => true, Fixer\PhpdocSelfAccessorFixer::name() => true, - Fixer\PhpdocTypesCommaSpacesFixer::name() => true, Fixer\PhpdocTypesTrimFixer::name() => true, /* diff --git a/tests/Fixtures/Ruleset/relax-custom_actual.php b/tests/Fixtures/Ruleset/relax-custom_actual.php index 4f7b156..800ff02 100644 --- a/tests/Fixtures/Ruleset/relax-custom_actual.php +++ b/tests/Fixtures/Ruleset/relax-custom_actual.php @@ -10,11 +10,6 @@ class RelaxCustom */ private $instance; - /** - * @var array - */ - private $phpdocTypesCommaSpacesFixer; - /** Hello * World! */ diff --git a/tests/Fixtures/Ruleset/relax-custom_expected.php b/tests/Fixtures/Ruleset/relax-custom_expected.php index e80207a..011a92b 100644 --- a/tests/Fixtures/Ruleset/relax-custom_expected.php +++ b/tests/Fixtures/Ruleset/relax-custom_expected.php @@ -9,11 +9,6 @@ class RelaxCustom */ private $instance; - /** - * @var array - */ - private $phpdocTypesCommaSpacesFixer; - /** * Hello * World!