20 lines
413 B
PHP
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());
|
|
}
|
|
}
|