mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
21 lines
439 B
PHP
21 lines
439 B
PHP
<?php
|
|
|
|
$finder = PhpCsFixer\Finder::create()
|
|
->exclude('vendor')
|
|
->exclude('storage')
|
|
->exclude('bootstrap/cache')
|
|
->in(__DIR__)
|
|
;
|
|
|
|
return PhpCsFixer\Config::create()
|
|
->setRules([
|
|
'@Symfony' => true,
|
|
'yoda_style' => [
|
|
'equal' => false,
|
|
'identical' => false,
|
|
'less_and_greater' => false,
|
|
],
|
|
'phpdoc_summary' => false,
|
|
])
|
|
->setFinder($finder)
|
|
;
|