mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 08:11:24 +05:30
18 lines
471 B
PHP
18 lines
471 B
PHP
<?php
|
|
$finder = \PhpCsFixer\Finder::create()
|
|
->in(__DIR__)
|
|
->exclude('data')
|
|
->exclude('docker')
|
|
->exclude('frontend')
|
|
->notPath('common/emails/views')
|
|
->notPath('common/mail/layouts')
|
|
->notPath('/.*\/runtime/')
|
|
->notPath('autocompletion.php')
|
|
->notPath('/.*\/tests\/_output/')
|
|
->notPath('/.*\/tests\/_support\/_generated/')
|
|
->name('yii');
|
|
|
|
return \Ely\CS\Config::create([
|
|
'self_accessor' => false,
|
|
])->setFinder($finder);
|