Automated PR provided by Codex via Gitea API. Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #486
27 lines
587 B
PHP
27 lines
587 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\TenantConfiguration;
|
|
|
|
enum Workload: string
|
|
{
|
|
case Intune = 'intune';
|
|
case Entra = 'entra';
|
|
case Exchange = 'exchange';
|
|
case Teams = 'teams';
|
|
case SecurityCompliance = 'security_compliance';
|
|
case Defender = 'defender';
|
|
case Purview = 'purview';
|
|
case Tenantpilot = 'tenantpilot';
|
|
case Unknown = 'unknown';
|
|
|
|
/**
|
|
* @return list<string>
|
|
*/
|
|
public static function values(): array
|
|
{
|
|
return array_map(static fn (self $case): string => $case->value, self::cases());
|
|
}
|
|
}
|