From f5e19ed87b991593c065fdee95784c09a7551b9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Tue, 12 Mar 2019 14:43:37 +0100 Subject: [PATCH] [cs-fixer] Configure properly the default finder --- friendsofphp/php-cs-fixer/2.2/.php_cs.dist | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/friendsofphp/php-cs-fixer/2.2/.php_cs.dist b/friendsofphp/php-cs-fixer/2.2/.php_cs.dist index d80e5d66..afe11185 100644 --- a/friendsofphp/php-cs-fixer/2.2/.php_cs.dist +++ b/friendsofphp/php-cs-fixer/2.2/.php_cs.dist @@ -1,8 +1,14 @@ in(__DIR__) + ->exclude('var') +; + return PhpCsFixer\Config::create() ->setRules([ '@Symfony' => true, 'array_syntax' => ['syntax' => 'short'], ]) + ->setFinder($finder) ;