From 84e2b419c884eaecc61382b0644c96028276fe0a Mon Sep 17 00:00:00 2001 From: Dominique FOURNIER Date: Thu, 13 Apr 2023 22:47:47 +0200 Subject: [PATCH] Update .php-cs-fixer.dist.php : add Tests and tools directories --- .php-cs-fixer.dist.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index b2f4998..5a7b622 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -2,6 +2,8 @@ $finder = PhpCsFixer\Finder::create() ->in(__DIR__. "/src") + ->in(__DIR__. "/tools") + ->in(__DIR__. "/Tests") ; $config = new PhpCsFixer\Config();