TenantAtlas/app/Support/Verification/VerificationReportOverall.php
2026-02-04 00:57:26 +01: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());
}
}