2022-11-11 11:30:45 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
$finder = PhpCsFixer\Finder::create()
|
|
|
|
->in(__DIR__)
|
|
|
|
;
|
|
|
|
|
|
|
|
$config = new PhpCsFixer\Config();
|
|
|
|
return $config->setRules([
|
2022-11-11 13:26:07 +01:00
|
|
|
'@PHP71Migration' => true,
|
2022-11-11 11:30:45 +01:00
|
|
|
'@PSR12' => true
|
|
|
|
])
|
|
|
|
->setFinder($finder)
|
|
|
|
;
|