16 lines
250 B
PHP
16 lines
250 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';
|
|
}
|