in([ __DIR__ . '/src', __DIR__ . '/tests', ]) ; return PhpCsFixer\Config::create() ->setRules([ '@Symfony' => true, 'array_syntax' => ['syntax' => 'short'], 'concat_space' => ['spacing' => 'one'], 'increment_style' => ['style' => 'post'], 'phpdoc_align' => ['tags' => []], 'cast_spaces' => ['space' => 'none'], 'phpdoc_summary' => false, 'yoda_style' => false, 'phpdoc_order' => true, ]) ->setFinder($finder) ->setCacheFile(__DIR__ . '/.php_cs.cache') ;