enabled short array notation in CS

This commit is contained in:
Fabien Potencier 2019-01-08 09:38:39 +01:00
parent cb07a3b551
commit 3245cb48da
1 changed files with 1 additions and 0 deletions

View File

@ -10,6 +10,7 @@ return PhpCsFixer\Config::create()
'@Symfony:risky' => true,
'@PHPUnit48Migration:risky' => true,
'php_unit_no_expectation_annotation' => false, // part of `PHPUnitXYMigration:risky` ruleset, to be enabled when PHPUnit 4.x support will be dropped, as we don't want to rewrite exceptions handling twice
'array_syntax' => array('syntax' => 'short'),
'fopen_flags' => false,
'ordered_imports' => true,
'protected_to_private' => false,