Initial commit

This commit is contained in:
2025-10-05 13:55:28 +02:00
commit 68d521677a
767 changed files with 46947 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
<?php
declare(strict_types=1);
use PhpCsFixer\Fixer\FunctionNotation\MethodArgumentSpaceFixer;
use PhpCsFixer\Fixer\Import\NoUnusedImportsFixer;
use PhpCsFixer\Fixer\Operator\ConcatSpaceFixer;
use Symplify\EasyCodingStandard\Config\ECSConfig;
return ECSConfig::configure()
->withPaths([
__DIR__ . '/src',
__DIR__ . '/tests',
])
->withRules([
NoUnusedImportsFixer::class,
])
->withConfiguredRule(MethodArgumentSpaceFixer::class, [
'on_multiline' => 'ensure_fully_multiline',
'attribute_placement' => 'same_line'
])
->withSkip([
ConcatSpaceFixer::class
])
->withPreparedSets(
psr12: true,
common: true,
cleanCode: true,
);