<?php return PhpCsFixer\Config::create() ->setRules([ '@Symfony' => true, 'array_syntax' => ['syntax' => 'short'], 'ordered_imports' => [ 'imports_order' => ['class', 'const', 'function'], 'sort_algorithm' => 'alpha', ], ]) ;