TenantAtlas/apps/platform/app/Support/ReviewPublicationResolution/ResolutionProofStatus.php
ahmido 83c679cf85 feat: add review publication proof currentness contract (#459)
Automated PR created by Codex via Gitea API.

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #459
2026-06-19 19:10:35 +00: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';
}