This commit is contained in:
Joao Patricio
2023-03-20 12:04:22 +00:00
parent a0da981ec7
commit 75326f6626
27 changed files with 1770 additions and 95 deletions

View File

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