Adapt ECS configuration

The used constant was made private and we adapt our code
This commit is contained in:
Daniel Siepmann 2021-08-31 09:08:53 +02:00
parent 8ef79d51cb
commit b8b0ff4761

View file

@ -55,9 +55,9 @@ return static function (ContainerConfigurator $containerConfigurator): void {
]]); ]]);
$services->set(ClassAttributesSeparationFixer::class)->call('configure', [[ $services->set(ClassAttributesSeparationFixer::class)->call('configure', [[
'elements' => [ 'elements' => [
'const' => ClassAttributesSeparationFixer::SPACING_ONE, 'const' => 'one',
'method' => ClassAttributesSeparationFixer::SPACING_ONE, 'method' => 'one',
'property' => ClassAttributesSeparationFixer::SPACING_ONE, 'property' => 'one',
], ],
]]); ]]);
}; };