From b8b0ff4761c743fc829c53953145443a95c47390 Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Tue, 31 Aug 2021 09:08:53 +0200 Subject: [PATCH] Adapt ECS configuration The used constant was made private and we adapt our code --- ecs.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ecs.php b/ecs.php index f339111..d6a0589 100644 --- a/ecs.php +++ b/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', ], ]]); };