From ca29d72615e49dd1c050e52177f1002b1c3db129 Mon Sep 17 00:00:00 2001 From: brabli <67018167+brabli@users.noreply.github.com> Date: Thu, 27 Nov 2025 14:59:45 +0000 Subject: [PATCH] Tweak php cs fixer file --- .php-cs-fixer.dist.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) mode change 100644 => 100755 .php-cs-fixer.dist.php diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php old mode 100644 new mode 100755 index bb2d4ed..3f5415d --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -2,8 +2,7 @@ declare(strict_types=1); -return (new PhpCsFixer\Config()) - ->setRules([ +return new PhpCsFixer\Config()->setRules([ '@Symfony' => true, 'binary_operator_spaces' => [ @@ -24,9 +23,11 @@ return (new PhpCsFixer\Config()) 'style' => 'post', ], ]) + ->setFinder( - (new PhpCsFixer\Finder()) + new PhpCsFixer\Finder() ->in(__DIR__) ->exclude('var') ) ; +