mirror of
https://github.com/werkraum-media/thuecat.git
synced 2024-12-04 19:16:13 +01:00
Adapt ECS configuration
The used constant was made private and we adapt our code
This commit is contained in:
parent
8ef79d51cb
commit
b8b0ff4761
1 changed files with 3 additions and 3 deletions
6
ecs.php
6
ecs.php
|
@ -55,9 +55,9 @@ return static function (ContainerConfigurator $containerConfigurator): void {
|
|||
]]);
|
||||
$services->set(ClassAttributesSeparationFixer::class)->call('configure', [[
|
||||
'elements' => [
|
||||
'const' => ClassAttributesSeparationFixer::SPACING_ONE,
|
||||
'method' => ClassAttributesSeparationFixer::SPACING_ONE,
|
||||
'property' => ClassAttributesSeparationFixer::SPACING_ONE,
|
||||
'const' => 'one',
|
||||
'method' => 'one',
|
||||
'property' => 'one',
|
||||
],
|
||||
]]);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue