Automated PR provided by Codex via Gitea API. Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #481
23 lines
497 B
PHP
23 lines
497 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\TenantConfiguration;
|
|
|
|
enum SupportState: string
|
|
{
|
|
case Supported = 'supported';
|
|
case FallbackSupported = 'fallback_supported';
|
|
case Experimental = 'experimental';
|
|
case Unsupported = 'unsupported';
|
|
case OutOfScope = 'out_of_scope';
|
|
|
|
/**
|
|
* @return list<string>
|
|
*/
|
|
public static function values(): array
|
|
{
|
|
return array_map(static fn (self $case): string => $case->value, self::cases());
|
|
}
|
|
}
|