TenantAtlas/apps/platform/app/Support/TenantConfiguration/Workload.php
Ahmed Darrazi b5de122f94
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 1m11s
feat: expand m365 tcm workload registry
2026-06-27 00:26:34 +02: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());
}
}