Refactoring: extract process handling from async job.

This commit is contained in:
Joao Patricio
2023-03-21 09:32:16 +00:00
parent d0d33da493
commit 83a7ef21f3
4 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace App\Enums;
enum ProcessStatus: string
{
case HOLDING = 'holding';
case IN_PROGRESS = 'in_progress';
case FINISHED = 'finished';
case ERROR = 'error';
}