diff --git a/.php_cs.dist b/.php_cs.dist new file mode 100644 index 000000000..5a403de40 --- /dev/null +++ b/.php_cs.dist @@ -0,0 +1,14 @@ +setRules(array( + '@Symfony' => true, + '@Symfony:risky' => true, + 'array_syntax' => array('syntax' => 'long'), + 'php_unit_fqcn_annotation' => false, + 'no_unreachable_default_argument_value' => false, + 'heredoc_to_nowdoc' => false, + )) + ->setRiskyAllowed(true) + ->setFinder(PhpCsFixer\Finder::create()->in(__DIR__)) +;