queueable actions
This commit is contained in:
@@ -8,8 +8,8 @@ enum FirewallRuleStatus: string
|
||||
{
|
||||
use Arrayable;
|
||||
|
||||
case NOT_APPLIED = 'not-applied';
|
||||
case APPLIED = 'applied';
|
||||
case UNINSTALLED = 'uninstalled';
|
||||
case INSTALLED = 'installed';
|
||||
case FAILED = 'failed';
|
||||
case REMOVED = 'removed';
|
||||
}
|
||||
9
app/Enums/FirewallRuleType.php
Normal file
9
app/Enums/FirewallRuleType.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum FirewallRuleType: string
|
||||
{
|
||||
case ALLOW = 'allow';
|
||||
case DENY = 'deny';
|
||||
}
|
||||
Reference in New Issue
Block a user