From a49763dd739c3c68c4a8322896d594e926ac8e6b Mon Sep 17 00:00:00 2001 From: Zhineng Li Date: Mon, 5 Jan 2026 16:26:11 +0800 Subject: first commit --- .php-cs-fixer.dist.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .php-cs-fixer.dist.php (limited to '.php-cs-fixer.dist.php') diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php new file mode 100644 index 0000000..931a884 --- /dev/null +++ b/.php-cs-fixer.dist.php @@ -0,0 +1,19 @@ +setParallelConfig(ParallelConfigFactory::detect()) + ->setRiskyAllowed(false) + ->setRules([ + '@auto' => true, + '@PSR12' => true, + 'new_with_parentheses' => [ + 'named_class' => false, + ], + ]) + ->setFinder((new Finder())->in(__DIR__)); -- cgit v1.2.3