Automated PR created by Codex via Gitea API. Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #459
14 lines
315 B
PHP
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';
|
|
}
|