From 0fba6dac5dedc04df7d603bc38248aa708d9d67f Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Mon, 24 Jan 2022 19:45:13 +0100 Subject: [PATCH] cs: Cleanup `.php-cs-fixer.dist.php`. --- .php-cs-fixer.dist.php | 5 ----- 1 file changed, 5 deletions(-) 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);