remove "array_syntax" option

This commit is contained in:
Massimiliano Arione
2021-01-07 13:45:18 +01:00
parent 4b0b80ca01
commit d7cd2d2fcb
2 changed files with 23 additions and 0 deletions
@@ -0,0 +1,13 @@
<?php
$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
->exclude('var')
;
return PhpCsFixer\Config::create()
->setRules([
'@Symfony' => true,
])
->setFinder($finder)
;
@@ -0,0 +1,10 @@
{
"aliases": ["cs-fixer", "php-cs-fixer"],
"copy-from-recipe": {
".php_cs.dist": ".php_cs.dist"
},
"gitignore": [
"/.php_cs",
"/.php_cs.cache"
]
}