18 lines
362 B
PHP
18 lines
362 B
PHP
<?php
|
|
|
|
namespace App\Support\Providers\Boundary;
|
|
|
|
enum ProviderBoundaryOwner: string
|
|
{
|
|
case ProviderOwned = 'provider_owned';
|
|
case PlatformCore = 'platform_core';
|
|
|
|
/**
|
|
* @return list<string>
|
|
*/
|
|
public static function values(): array
|
|
{
|
|
return array_map(static fn (self $case): string => $case->value, self::cases());
|
|
}
|
|
}
|