Skip to content

Commit b4c9dfa

Browse files
committed
Fix
1 parent a3e956c commit b4c9dfa

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

ecs.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
declare(strict_types=1);
44

5+
use PhpCsFixer\Fixer\Casing\LowercaseKeywordsFixer;
56
use PhpCsFixer\Fixer\Phpdoc\GeneralPhpdocAnnotationRemoveFixer;
67
use PhpCsFixer\Fixer\Phpdoc\PhpdocTypesFixer;
78
use Symplify\EasyCodingStandard\Config\ECSConfig;
8-
use PhpCsFixer\Fixer\Casing\LowercaseKeywordsFixer;
99

1010
return ECSConfig::configure()
1111
->withPreparedSets(symplify: true, common: true, psr12: true)
@@ -36,8 +36,6 @@
3636
__DIR__ . '/src/Util/ArrayParametersMerger.php',
3737
],
3838

39-
LowercaseKeywordsFixer::class => [
40-
__DIR__ . '/src/ValueObject/Visibility.php',
41-
],
39+
LowercaseKeywordsFixer::class => [__DIR__ . '/src/ValueObject/Visibility.php'],
4240
])
4341
->withRootFiles();

0 commit comments

Comments
 (0)