12 lines
193 B
PHP
12 lines
193 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace App\Support\Api;
|
|
|
|
enum RouteRisk: string
|
|
{
|
|
case LOW = 'low';
|
|
case MEDIUM = 'medium';
|
|
case HIGH = 'high';
|
|
case CRITICAL = 'critical';
|
|
}
|