10 lines
160 B
PHP
10 lines
160 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum FirewallRuleStatus: string
|
|
{
|
|
case NOT_APPLIED = 'not-applied';
|
|
case APPLIED = 'applied';
|
|
case FAILED = 'failed';
|
|
} |