pay/.php_cs

20 lines
513 B
Plaintext
Raw Normal View History

2019-09-08 22:13:53 +08:00
<?php
$finder = PhpCsFixer\Finder::create()
->exclude('tests')
2021-01-10 16:09:42 +08:00
->exclude('vendor')
->in(__DIR__);
2019-09-08 22:13:53 +08:00
return PhpCsFixer\Config::create()
->setUsingCache(false)
->setRules([
'@Symfony' => true,
'class_attributes_separation' => true,
'ordered_class_elements' => true,
2019-09-08 22:55:47 +08:00
'ordered_imports' => ['sort_algorithm' => 'alpha'],
2019-09-08 22:13:53 +08:00
'line_ending' => true,
'single_quote' => true,
'array_syntax' => ['syntax' => 'short'],
])
->setFinder($finder);