chore - Fix class_attributes_separation lint issues
This commit is contained in:
parent
98d355e811
commit
afc65b4f3a
4 changed files with 3 additions and 1 deletions
|
|
@ -30,5 +30,4 @@ public function getAllocationValueRules(): array
|
||||||
self::UNLIMITED => ['nullable'],
|
self::UNLIMITED => ['nullable'],
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,7 @@ class Draw extends Model
|
||||||
|
|
||||||
/** @use HasFactory<DrawFactory> */
|
/** @use HasFactory<DrawFactory> */
|
||||||
use HasFactory;
|
use HasFactory;
|
||||||
|
|
||||||
use HasProjectionStatus;
|
use HasProjectionStatus;
|
||||||
use HasUuid;
|
use HasUuid;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,7 @@ class Outflow extends Model
|
||||||
|
|
||||||
/** @use HasFactory<OutflowFactory> */
|
/** @use HasFactory<OutflowFactory> */
|
||||||
use HasFactory;
|
use HasFactory;
|
||||||
|
|
||||||
use HasProjectionStatus;
|
use HasProjectionStatus;
|
||||||
use HasUuid;
|
use HasUuid;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,7 @@
|
||||||
readonly class PipelineAllocationService
|
readonly class PipelineAllocationService
|
||||||
{
|
{
|
||||||
private const string CAP_BASE = 'base';
|
private const string CAP_BASE = 'base';
|
||||||
|
|
||||||
private const string CAP_FILL = 'fill';
|
private const string CAP_FILL = 'fill';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue