## Summary - add canonical onboarding lifecycle and checkpoint fields plus optimistic locking versioning for managed tenant onboarding drafts - introduce centralized onboarding lifecycle and mutation services and route wizard mutations through version-checked writes - convert Verify Access and Bootstrap into live checkpoint-driven wizard states with conditional polling and updated browser/feature/unit coverage - add Spec Kit artifacts for feature 140, including spec, plan, tasks, research, data model, quickstart, checklist, and logical contract ## Validation - branch was committed and pushed cleanly - focused tests and formatting were updated during implementation work - full validation was not re-run as part of this final git/PR step ## Notes - base branch: `dev` - feature branch: `140-onboarding-lifecycle-operation-checkpoints-concurrency-mvp` - outstanding follow-up items, if any, remain tracked in `specs/140-onboarding-lifecycle-operation-checkpoints-concurrency-mvp/tasks.md` Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #169
46 lines
1.1 KiB
PHP
46 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\Onboarding;
|
|
|
|
enum OnboardingLifecycleState: string
|
|
{
|
|
case Draft = 'draft';
|
|
case Verifying = 'verifying';
|
|
case ActionRequired = 'action_required';
|
|
case Bootstrapping = 'bootstrapping';
|
|
case ReadyForActivation = 'ready_for_activation';
|
|
case Completed = 'completed';
|
|
case Cancelled = 'cancelled';
|
|
|
|
public function label(): string
|
|
{
|
|
return match ($this) {
|
|
self::Draft => 'Draft',
|
|
self::Verifying => 'Verifying',
|
|
self::ActionRequired => 'Action required',
|
|
self::Bootstrapping => 'Bootstrapping',
|
|
self::ReadyForActivation => 'Ready for activation',
|
|
self::Completed => 'Completed',
|
|
self::Cancelled => 'Cancelled',
|
|
};
|
|
}
|
|
|
|
public function isTerminal(): bool
|
|
{
|
|
return in_array($this, [self::Completed, self::Cancelled], true);
|
|
}
|
|
|
|
/**
|
|
* @return array<int, string>
|
|
*/
|
|
public static function values(): array
|
|
{
|
|
return array_map(
|
|
static fn (self $case): string => $case->value,
|
|
self::cases(),
|
|
);
|
|
}
|
|
}
|