diff --git a/.php_cs.dist b/.php_cs.dist index edafec3af..11770083d 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -25,19 +25,15 @@ return PhpCsFixer\Config::create() ->setRules([ '@Symfony' => true, '@Symfony:risky' => true, - 'array_syntax' => ['syntax' => 'short'], 'header_comment' => ['header' => $fileHeaderComment, 'separate' => 'both'], 'linebreak_after_opening_tag' => true, 'mb_str_functions' => true, 'no_php4_constructor' => true, - 'no_superfluous_phpdoc_tags' => true, 'no_unreachable_default_argument_value' => true, 'no_useless_else' => true, 'no_useless_return' => true, - 'ordered_imports' => true, 'php_unit_strict' => true, 'phpdoc_order' => true, - 'semicolon_after_instruction' => true, 'strict_comparison' => true, 'strict_param' => true, ])