TenantAtlas/apps/platform/app/Support/TenantConfiguration/Workload.php
ahmido 5252398063 feat: expand m365 tcm workload registry (#486)
Automated PR provided by Codex via Gitea API.

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #486
2026-06-26 22:36:24 +00:00

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());
}
}