From 00f72e3be9bc9afc20bea2b51fa02a3209f31d44 Mon Sep 17 00:00:00 2001 From: Continuous Integration Date: Sat, 4 May 2024 17:42:09 +0000 Subject: [PATCH] Continuous Integration Fixes --- config/ecs.php | 11 +++++++++-- src/LubiSetList.php | 1 - 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/config/ecs.php b/config/ecs.php index b5a07ba..a964b49 100644 --- a/config/ecs.php +++ b/config/ecs.php @@ -1,5 +1,6 @@ withConfiguredRule( - \PhpCsFixer\Fixer\ClassNotation\ClassAttributesSeparationFixer::class, + ClassAttributesSeparationFixer::class, [ - 'elements' => ['const' => 'none', 'method' => 'one', 'property' => 'none', 'trait_import' => 'none', 'case' => 'none'], + 'elements' => [ + 'const' => 'none', + 'method' => 'one', + 'property' => 'none', + 'trait_import' => 'none', + 'case' => 'none', + ], ], )->withConfiguredRule( DeclareStrictTypesSniff::class, diff --git a/src/LubiSetList.php b/src/LubiSetList.php index 87017c2..092d20f 100644 --- a/src/LubiSetList.php +++ b/src/LubiSetList.php @@ -5,6 +5,5 @@ namespace Lubiana\CodeQuality; final class LubiSetList { public const string RECTOR = __DIR__ . '/../config/rector.php'; - public const string ECS = __DIR__ . '/../config/ecs.php'; }