mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-01 05:56:16 +00:00
init
This commit is contained in:
24
app/Enums/QueueStatus.php
Normal file
24
app/Enums/QueueStatus.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
use BenSampo\Enum\Enum;
|
||||
|
||||
final class QueueStatus extends Enum
|
||||
{
|
||||
const RUNNING = 'running';
|
||||
|
||||
const CREATING = 'creating';
|
||||
|
||||
const DELETING = 'deleting';
|
||||
|
||||
const FAILED = 'failed';
|
||||
|
||||
const STARTING = 'starting';
|
||||
|
||||
const STOPPING = 'stopping';
|
||||
|
||||
const RESTARTING = 'restarting';
|
||||
|
||||
const STOPPED = 'stopped';
|
||||
}
|
Reference in New Issue
Block a user