TenantAtlas/apps/platform/app/Support/ReviewPublicationResolution/ResolutionProofStatus.php
Ahmed Darrazi 314a157233
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 1m18s
feat: add review publication proof currentness contract
2026-06-19 20:59:05 +02:00

19 lines
425 B
PHP

<?php
declare(strict_types=1);
namespace App\Support\ReviewPublicationResolution;
enum ResolutionProofStatus: string
{
case Missing = 'missing';
case Available = 'available';
case Running = 'running';
case Succeeded = 'succeeded';
case Failed = 'failed';
case Cancelled = 'cancelled';
case Unavailable = 'unavailable';
case NotAccessible = 'not_accessible';
case Unknown = 'unknown';
}