You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
576 B
24 lines
576 B
9 months ago
|
<?php
|
||
|
|
||
|
use PhpCsFixer\Config;
|
||
|
use PhpCsFixer\Finder;
|
||
|
|
||
|
$finder = Finder::create()
|
||
|
->in(['src', 'tests']);
|
||
|
|
||
|
return Config::create()
|
||
|
->setRules([
|
||
|
'@Symfony' => true,
|
||
|
'ordered_imports' => true,
|
||
|
'phpdoc_align' => false,
|
||
|
'phpdoc_to_comment' => false,
|
||
|
'phpdoc_inline_tag' => false,
|
||
|
'yoda_style' => false,
|
||
|
'blank_line_before_statement' => false,
|
||
|
'phpdoc_separation' => false,
|
||
|
'pre_increment' => false,
|
||
|
'increment_style' => false,
|
||
|
'phpdoc_types' => false,
|
||
|
])
|
||
|
->setFinder($finder);
|