From fdef8041f898d1ba0c44e71ed9ec6c7c6920f422 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 20 Jun 2016 18:23:25 +0200 Subject: [PATCH] tweaked default CS fixer config --- .php_cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.php_cs b/.php_cs index 290e9bf5fb..6043614819 100644 --- a/.php_cs +++ b/.php_cs @@ -3,6 +3,10 @@ return Symfony\CS\Config\Config::create() ->setUsingLinter(false) ->setUsingCache(true) + ->fixers(array( + 'long_array_syntax', + 'php_unit_construct', + )) ->finder( Symfony\CS\Finder\DefaultFinder::create() ->in(__DIR__) @@ -12,6 +16,7 @@ return Symfony\CS\Config\Config::create() 'src/Symfony/Component/Routing/Tests/Fixtures/dumper', // fixture templates 'src/Symfony/Component/Templating/Tests/Fixtures/templates', + 'src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/Resources/Custom', // resource templates 'src/Symfony/Bundle/FrameworkBundle/Resources/views/Form', ))