-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathecs.php
More file actions
35 lines (29 loc) · 1.12 KB
/
Copy pathecs.php
File metadata and controls
35 lines (29 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
declare(strict_types=1);
error_reporting(E_ERROR | E_WARNING | E_PARSE);
use PhpCsFixer\Fixer\ArrayNotation\ArraySyntaxFixer;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use Symplify\CodingStandard\Fixer\LineLength\LineLengthFixer;
use Symplify\EasyCodingStandard\ValueObject\Option;
use Symplify\EasyCodingStandard\ValueObject\Set\SetList;
return static function (ContainerConfigurator $containerConfigurator): void {
$services = $containerConfigurator->services();
$services->set(ArraySyntaxFixer::class);
$services->set(ArraySyntaxFixer::class)
->call('configure', [['syntax' => 'short']]);
$parameters = $containerConfigurator->parameters();
$parameters->set(Option::PATHS, [__DIR__ . '/src', __DIR__ . '/config', __DIR__ . '/ecs.php']);
$parameters->set(
Option::SETS,
[
SetList::SPACES,
SetList::CLEAN_CODE,
SetList::ARRAY,
SetList::COMMENTS,
SetList::STRICT,
SetList::NAMESPACES,
SetList::CONTROL_STRUCTURES,
SetList::PSR_12,
]
);
};