From da2ce04fcedfe174b4e7dc6cae27288b49462ce1 Mon Sep 17 00:00:00 2001 From: Molkobain Date: Thu, 13 Nov 2025 20:14:46 +0100 Subject: [PATCH] =?UTF-8?q?N=C2=B08796=20-=20Parallelize=20processing=20to?= =?UTF-8?q?=20reduce=20local=20env.=20delay?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/php-code-style/.php-cs-fixer.dist.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/php-code-style/.php-cs-fixer.dist.php b/tests/php-code-style/.php-cs-fixer.dist.php index 22c91495a..373d97887 100644 --- a/tests/php-code-style/.php-cs-fixer.dist.php +++ b/tests/php-code-style/.php-cs-fixer.dist.php @@ -22,9 +22,11 @@ $finder = PhpCsFixer\Finder::create() ; $config = new PhpCsFixer\Config(); -return $config->setRiskyAllowed(true) +return $config + ->setParallelConfig(PhpCsFixer\Runner\Parallel\ParallelConfigFactory::detect()) + ->setRiskyAllowed(true) ->setRules([ - '@PSR12' => true, + '@PSR12' => true, 'indentation_type' => true, 'no_extra_blank_lines' => true, 'array_syntax' => ['syntax' => 'short'],