15 lines
295 B
PHP
15 lines
295 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\Baselines;
|
|
|
|
enum ResolutionPath: string
|
|
{
|
|
case Policy = 'policy';
|
|
case Inventory = 'inventory';
|
|
case FoundationPolicy = 'foundation_policy';
|
|
case FoundationInventory = 'foundation_inventory';
|
|
case Derived = 'derived';
|
|
}
|