Run php-cs-fixer

This commit is contained in:
Dane Everitt 2021-08-15 17:20:36 -07:00
parent d1199e59e6
commit 25d9ba4779
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
21 changed files with 30 additions and 38 deletions

View file

@ -3,7 +3,15 @@
use PhpCsFixer\Config;
use PhpCsFixer\Finder;
$finder = (new Finder())->in(__DIR__)->exclude(['vendor', 'node_modules', 'storage', 'bootstrap/cache']);
$finder = (new Finder())
->in(__DIR__)
->exclude([
'vendor',
'node_modules',
'storage',
'bootstrap/cache',
])
->notName(['_ide_helper*']);
return (new Config())
->setRiskyAllowed(true)