TenantAtlas/apps/platform/app/Support/EnvironmentReviewCompletenessState.php
Ahmed Darrazi 5443dba269
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 7m2s
refactor: consolidate internal tenant model naming
2026-05-14 13:09:36 +02:00

22 lines
416 B
PHP

<?php
declare(strict_types=1);
namespace App\Support;
enum EnvironmentReviewCompletenessState: string
{
case Complete = 'complete';
case Partial = 'partial';
case Missing = 'missing';
case Stale = 'stale';
/**
* @return list<string>
*/
public static function values(): array
{
return array_map(static fn (self $case): string => $case->value, self::cases());
}
}