TenantAtlas/apps/platform/app/Support/ReviewPublicationResolution/ResolutionProofVisibility.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
315 B
PHP

<?php
declare(strict_types=1);
namespace App\Support\ReviewPublicationResolution;
enum ResolutionProofVisibility: string
{
case OperatorVisible = 'operator_visible';
case OperatorLimited = 'operator_limited';
case CustomerSafeSummaryOnly = 'customer_safe_summary_only';
case Hidden = 'hidden';
}