mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-01-19 16:27:24 +08:00
20 lines
418 B
Plaintext
20 lines
418 B
Plaintext
|
<?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)
|
||
|
;
|