koel/.php_cs.dist
2020-09-06 23:20:42 +02:00

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)
;