TenantAtlas/apps/platform/app/Support/TenantConfiguration/ClaimState.php
Ahmed Darrazi 611b19910e
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 4m27s
feat: migrate tcm first coverage core cutover
2026-06-25 14:54:31 +02:00

22 lines
458 B
PHP

<?php
declare(strict_types=1);
namespace App\Support\TenantConfiguration;
enum ClaimState: string
{
case ClaimAllowed = 'claim_allowed';
case ClaimLimited = 'claim_limited';
case ClaimBlocked = 'claim_blocked';
case InternalOnly = 'internal_only';
/**
* @return list<string>
*/
public static function values(): array
{
return array_map(static fn (self $case): string => $case->value, self::cases());
}
}