diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 845628a..61be26e 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -6,4 +6,4 @@ use PhpCsFixer\Finder; $finder = Finder::create()->in(__DIR__)->exclude('tests/fixtures'); -return Config::strict($finder); +return Config::basic($finder); diff --git a/Eventjet/PhpCsFixer/Config.php b/Eventjet/PhpCsFixer/Config.php index 2364214..14b2b1d 100644 --- a/Eventjet/PhpCsFixer/Config.php +++ b/Eventjet/PhpCsFixer/Config.php @@ -43,7 +43,7 @@ private static function basicRules(): array */ private static function strictRules(): array { - return require(__DIR__ . '/../../php-cs-fixer-rules.php'); + return require(__DIR__ . '/../../php-cs-fixer-strict-rules.php'); } private static function createFinder(): Finder