12 lines
189 B
PHP
12 lines
189 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Services;
|
||
|
|
||
|
enum ProcessStatus: string
|
||
|
{
|
||
|
case HOLDING = 'holding';
|
||
|
case IN_PROGRESS = 'in_progress';
|
||
|
case FINISHED = 'finished';
|
||
|
case ERROR = 'error';
|
||
|
}
|