mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-01-19 13:07:25 +08:00
20 lines
418 B
PHP
Executable File
20 lines
418 B
PHP
Executable File
<?php
|
|
|
|
$finder = PhpCsFixer\Finder::create()
|
|
->in('src')
|
|
->in('tests')
|
|
;
|
|
|
|
return PhpCsFixer\Config::create()
|
|
->setRules([
|
|
'@Symfony' => true,
|
|
'align_multiline_comment' => true,
|
|
'array_syntax' => ['syntax' => 'short'],
|
|
'increment_style' => ['style' => 'post'],
|
|
'list_syntax' => ['syntax' => 'short'],
|
|
'yoda_style' => false,
|
|
|
|
])
|
|
->setFinder($finder)
|
|
;
|