Skip to content
Extraits de code Groupes Projets
.php-cs-fixer.dist.php 243 o
<?php

/**
 * @see https://cs.symfony.com/doc/config.html
 */

$finder = (new PhpCsFixer\Finder())
    ->in(__DIR__ . '/src')
;

return (new PhpCsFixer\Config())
    ->setRules([
        '@PER-CS1.0' => true,
    ])
    ->setFinder($finder)
;