TenantAtlas/apps/platform/app/Support/ReviewPublicationResolution/ReviewPublicationResolutionStepStatus.php
Ahmed Darrazi 5c02afcae8
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 6m16s
feat: implement ReviewPublicationResolutionWorkflow (Spec 386)
2026-06-18 22:57:10 +02:00

16 lines
334 B
PHP

<?php
declare(strict_types=1);
namespace App\Support\ReviewPublicationResolution;
enum ReviewPublicationResolutionStepStatus: string
{
case Pending = 'pending';
case Actionable = 'actionable';
case Running = 'running';
case Failed = 'failed';
case Completed = 'completed';
case Superseded = 'superseded';
}