RSS Git Download  Clone
Raw View History
Blames found: 3 Mode: php Binary: false


Hang on, we reloading big blames...
<?php $finder = PhpCsFixer\Finder::create() ->in(__DIR__ . '/src') ->in(__DIR__ . '/tests') ; $config = new PhpCsFixer\Config(); return $config->setRules([ '@Symfony' => true,
'global_namespace_import' => [ 'import_classes' => true, 'import_constants' => false, 'import_functions' => false, ],
]) ->setRiskyAllowed(true) ->setFinder($finder) ;