mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 18:31:36 +00:00
13 lines
159 B
PHP
13 lines
159 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class FirewallRuleStatus
|
|
{
|
|
const CREATING = 'creating';
|
|
|
|
const READY = 'ready';
|
|
|
|
const DELETING = 'deleting';
|
|
}
|