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

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';
}