diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 443df751f..a60d60c50 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -14,15 +14,10 @@ ->getFinder() ->ignoreDotFiles(false) ->notPath('src/Contract/Operation/Allable.php') - // This is for the test "testAllowsDifferentClassesWithSameInterfaceButInDifferentOrder" - // See https://github.com/FriendsOfPHP/PHP-CS-Fixer/issues/3871 - ->notPath('tests/unit/Iterator/TypedIteratorTest.php') ->name(['.php_cs.dist']); $rules = $config->getRules(); $rules['return_assignment'] = false; -// See https://github.com/FriendsOfPHP/PHP-CS-Fixer/issues/6179 -$rules['php_unit_dedicate_assert'] = false; return $config->setRules($rules);