mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 17:46:02 +08:00
15 lines
250 B
Text
15 lines
250 B
Text
|
<?php
|
||
|
|
||
|
$finder = PhpCsFixer\Finder::create()
|
||
|
->in(__DIR__)
|
||
|
->exclude('var')
|
||
|
;
|
||
|
|
||
|
return PhpCsFixer\Config::create()
|
||
|
->setRules([
|
||
|
'@Symfony' => true,
|
||
|
'array_syntax' => ['syntax' => 'short'],
|
||
|
])
|
||
|
->setFinder($finder)
|
||
|
;
|