TenantAtlas/apps/platform/app/Support/ReviewPublicationResolution/ResolutionProofUsability.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

14 lines
287 B
PHP

<?php
declare(strict_types=1);
namespace App\Support\ReviewPublicationResolution;
enum ResolutionProofUsability: string
{
case Usable = 'usable';
case UsableWithWarning = 'usable_with_warning';
case NotUsable = 'not_usable';
case InspectionOnly = 'inspection_only';
}