TenantAtlas/app/Support/Onboarding/OnboardingDraftStatus.php
ahmido d2f2c55ead feat: add onboarding lifecycle checkpoints and locking (#169)
## 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
2026-03-14 11:02:29 +00:00

41 lines
911 B
PHP

<?php
declare(strict_types=1);
namespace App\Support\Onboarding;
enum OnboardingDraftStatus: string
{
case Draft = 'draft';
case Completed = 'completed';
case Cancelled = 'cancelled';
public static function fromLifecycleState(OnboardingLifecycleState $state): self
{
return match ($state) {
OnboardingLifecycleState::Completed => self::Completed,
OnboardingLifecycleState::Cancelled => self::Cancelled,
default => self::Draft,
};
}
public function label(): string
{
return match ($this) {
self::Draft => 'Draft',
self::Completed => 'Completed',
self::Cancelled => 'Cancelled',
};
}
public function isResumable(): bool
{
return $this === self::Draft;
}
public function isTerminal(): bool
{
return ! $this->isResumable();
}
}