2022-07-13 10:41:23 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
$finder = PhpCsFixer\Finder::create()
|
|
|
|
->in(__DIR__)
|
|
|
|
;
|
|
|
|
|
|
|
|
$config = new PhpCsFixer\Config();
|
|
|
|
return $config->setRules([
|
2022-07-19 23:20:33 +02:00
|
|
|
'@PHP73Migration' => true,
|
2022-07-13 10:41:23 +02:00
|
|
|
'@PSR12' => true
|
|
|
|
])
|
|
|
|
->setFinder($finder)
|
|
|
|
;
|