improve code style

This commit is contained in:
2024-02-02 11:39:13 +01:00
parent 1aac154bcb
commit fae28866eb
9 changed files with 43 additions and 27 deletions

13
.php-cs-fixer.php Normal file
View File

@ -0,0 +1,13 @@
<?php
$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
;
$config = new PhpCsFixer\Config();
return $config->setRules([
'@PHP80Migration' => true,
'@PSR12' => true
])
->setFinder($finder)
;