15 lines
249 B
PHP
15 lines
249 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
use App\Enums\Concerns\Arrayable;
|
|
|
|
enum FirewallRuleStatus: string
|
|
{
|
|
use Arrayable;
|
|
|
|
case UNINSTALLED = 'uninstalled';
|
|
case INSTALLED = 'installed';
|
|
case FAILED = 'failed';
|
|
case REMOVED = 'removed';
|
|
} |