38 lines
1009 B
PHP
38 lines
1009 B
PHP
<?php
|
|
|
|
$finder = PhpCsFixer\Finder::create()->in([
|
|
__DIR__.'/src',
|
|
__DIR__.'/classes',
|
|
__DIR__.'/controllers',
|
|
]);
|
|
|
|
return PhpCsFixer\Config::create()
|
|
->setRiskyAllowed(true)
|
|
->setRules([
|
|
'@Symfony' => true,
|
|
'concat_space' => [
|
|
'spacing' => 'one',
|
|
],
|
|
'cast_spaces' => [
|
|
'space' => 'single',
|
|
],
|
|
'error_suppression' => [
|
|
'mute_deprecation_error' => false,
|
|
'noise_remaining_usages' => false,
|
|
'noise_remaining_usages_exclude' => [],
|
|
],
|
|
'function_to_constant' => false,
|
|
'no_alias_functions' => false,
|
|
'non_printable_character' => false,
|
|
'phpdoc_summary' => false,
|
|
'phpdoc_align' => [
|
|
'align' => 'left',
|
|
],
|
|
'protected_to_private' => false,
|
|
'psr4' => false,
|
|
'self_accessor' => false,
|
|
'yoda_style' => null,
|
|
])
|
|
->setFinder($finder)
|
|
->setCacheFile(__DIR__.'/var/.php_cs.cache');
|