SuiteCRM-Core/.php-cs-fixer.dist.php

14 lines
197 B
PHP
Raw Normal View History

2020-02-03 07:18:15 +00:00
<?php
$finder = (new PhpCsFixer\Finder())
2020-02-03 07:18:15 +00:00
->in(__DIR__)
->exclude('var')
;
return (new PhpCsFixer\Config())
2020-02-03 07:18:15 +00:00
->setRules([
'@Symfony' => true,
])
->setFinder($finder)
;