From d2595445157f550427ad01fef39e4975f5cceced Mon Sep 17 00:00:00 2001 From: David Goodwin Date: Thu, 25 Jan 2018 21:02:11 +0000 Subject: [PATCH] ignore config.local.php too --- .php_cs.dist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.php_cs.dist b/.php_cs.dist index ffb428c4..04fc56b5 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -6,7 +6,7 @@ $finder = PhpCsFixer\Finder::create() ->exclude('templates') ->exclude('templates_c') ->exclude('debian') - ->files()->notName('config.inc.php') + ->files()->notName('config.inc.php')->notName('config.local.php') ->in(__DIR__); return PhpCsFixer\Config::create()