queueable actions

This commit is contained in:
2025-04-07 12:15:54 +01:00
parent 9e826e5f18
commit ce8b201a1c
7 changed files with 168 additions and 50 deletions

View File

@@ -0,0 +1,9 @@
<?php
namespace App\Enums;
enum FirewallRuleType: string
{
case ALLOW = 'allow';
case DENY = 'deny';
}