From afc65b4f3a8ebee95a32aac03946ea5eca3a4d9f Mon Sep 17 00:00:00 2001 From: myrmidex Date: Mon, 30 Mar 2026 00:00:54 +0200 Subject: [PATCH] chore - Fix class_attributes_separation lint issues --- app/Enums/BucketAllocationTypeEnum.php | 1 - app/Models/Draw.php | 1 + app/Models/Outflow.php | 1 + app/Services/Projection/PipelineAllocationService.php | 1 + 4 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app/Enums/BucketAllocationTypeEnum.php b/app/Enums/BucketAllocationTypeEnum.php index 7e9055b..217b0a8 100644 --- a/app/Enums/BucketAllocationTypeEnum.php +++ b/app/Enums/BucketAllocationTypeEnum.php @@ -30,5 +30,4 @@ public function getAllocationValueRules(): array self::UNLIMITED => ['nullable'], }; } - } diff --git a/app/Models/Draw.php b/app/Models/Draw.php index 8226329..667ae06 100644 --- a/app/Models/Draw.php +++ b/app/Models/Draw.php @@ -28,6 +28,7 @@ class Draw extends Model /** @use HasFactory */ use HasFactory; + use HasProjectionStatus; use HasUuid; diff --git a/app/Models/Outflow.php b/app/Models/Outflow.php index c6def8f..4d618ba 100644 --- a/app/Models/Outflow.php +++ b/app/Models/Outflow.php @@ -29,6 +29,7 @@ class Outflow extends Model /** @use HasFactory */ use HasFactory; + use HasProjectionStatus; use HasUuid; diff --git a/app/Services/Projection/PipelineAllocationService.php b/app/Services/Projection/PipelineAllocationService.php index d8c4998..2796ae0 100644 --- a/app/Services/Projection/PipelineAllocationService.php +++ b/app/Services/Projection/PipelineAllocationService.php @@ -13,6 +13,7 @@ readonly class PipelineAllocationService { private const string CAP_BASE = 'base'; + private const string CAP_FILL = 'fill'; /**