19 lines
355 B
PHP
19 lines
355 B
PHP
<?php
|
|
|
|
$finder = PhpCsFixer\Finder::create()
|
|
->in([
|
|
__DIR__ . '/src',
|
|
]);
|
|
|
|
$config = new PhpCsFixer\Config();
|
|
|
|
return $config
|
|
->setRiskyAllowed(true)
|
|
->setRules([
|
|
'@PER-CS3x0' => true,
|
|
'@Symfony' => true,
|
|
'concat_space' => ['spacing' => 'one'],
|
|
])
|
|
->setFinder($finder)
|
|
->setLineEnding("\r\n");
|