From f9218ebb1bb0632ec15995afdbb50d8e126b27d8 Mon Sep 17 00:00:00 2001 From: Matthias Pfefferle Date: Thu, 14 Sep 2023 20:37:39 +0200 Subject: [PATCH] remove php-cs-fixer config file --- .php_cs | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 .php_cs diff --git a/.php_cs b/.php_cs deleted file mode 100644 index 7f81780..0000000 --- a/.php_cs +++ /dev/null @@ -1,15 +0,0 @@ -exclude('vendor') - ->exclude('node_modules') - ->exclude('bin') - ->in(__DIR__) -; - -return PhpCsFixer\Config::create() - ->setRules([ - 'native_function_invocation' => ['include' => ['@all']], - 'native_constant_invocation' => true, - ]) - ->setFinder($finder) -;