lasthourcloud/app/Enums/ProcessStatus.php

14 lines
246 B
PHP
Raw Normal View History

2023-03-20 12:04:22 +00:00
<?php
namespace App\Enums;
2023-03-20 12:04:22 +00:00
enum ProcessStatus: string
{
2023-05-08 07:16:50 +00:00
case QUEUED = 'queued';
2023-03-20 12:04:22 +00:00
case IN_PROGRESS = 'in_progress';
case FINISHED = 'finished';
case ERROR = 'error';
2023-12-08 21:51:42 +00:00
case KILLED = 'killed';
2023-05-30 13:52:17 +00:00
case CANCELLED = 'cancelled';
2023-03-20 12:04:22 +00:00
}