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