2021-09-15 14:07:26 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
$finder = PhpCsFixer\Finder::create()
|
|
|
|
->in(__DIR__)
|
|
|
|
->exclude('application/models/airtime/map')
|
|
|
|
->exclude('application/models/airtime/om');
|
|
|
|
|
|
|
|
$config = new PhpCsFixer\Config();
|
|
|
|
return $config->setRules([
|
|
|
|
'@PhpCsFixer' => true,
|
|
|
|
'concat_space' => ['spacing' => 'one'],
|
2022-01-23 19:15:55 +01:00
|
|
|
'multiline_whitespace_before_semicolons' => ['strategy' => 'no_multi_line'],
|
2021-09-15 14:07:26 +02:00
|
|
|
'ordered_class_elements' => false,
|
|
|
|
'yoda_style' => false,
|
|
|
|
])
|
|
|
|
->setFinder($finder);
|