TenantAtlas/apps/platform/app/Support/Verification/VerificationReportOverall.php
2026-04-08 09:33:16 +02:00

20 lines
413 B
PHP

<?php
namespace App\Support\Verification;
enum VerificationReportOverall: string
{
case Ready = 'ready';
case NeedsAttention = 'needs_attention';
case Blocked = 'blocked';
case Running = 'running';
/**
* @return array<int, string>
*/
public static function values(): array
{
return array_map(static fn (self $case): string => $case->value, self::cases());
}
}