19 lines
305 B
Text
19 lines
305 B
Text
|
<?php
|
||
|
|
||
|
$finder = PhpCsFixer\Finder::create()
|
||
|
->exclude('ext/amazon_s3/lib')
|
||
|
->exclude('vendor')
|
||
|
->in(__DIR__)
|
||
|
;
|
||
|
|
||
|
return PhpCsFixer\Config::create()
|
||
|
->setRules([
|
||
|
'@PSR2' => true,
|
||
|
//'strict_param' => true,
|
||
|
'array_syntax' => ['syntax' => 'short'],
|
||
|
])
|
||
|
->setFinder($finder)
|
||
|
;
|
||
|
|
||
|
?>
|