From 6722a8dde9b8360fdc186472434b9861b960df52 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Fri, 16 Nov 2018 09:19:55 +0545 Subject: [PATCH] php-cs-fixer correctly exclude c3.php --- .php_cs.dist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.php_cs.dist b/.php_cs.dist index d7346e7e31..106b08f8b1 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -6,7 +6,7 @@ $config ->setUsingCache(true) ->getFinder() ->exclude('l10n') - ->exclude('c3.php') + ->notPath('/^c3.php/') ->in(__DIR__); return $config;