feat(jobs): add ProcessingQueue enum

This commit is contained in:
peaklabs-dev 2025-12-10 22:32:03 +01:00
parent 124957fe94
commit 907be7d562
No known key found for this signature in database
2 changed files with 18 additions and 0 deletions

View file

View file

@ -0,0 +1,18 @@
<?php
declare(strict_types=1);
namespace App\Enums;
enum ProcessingQueue: string
{
case Default = 'default';
case High = 'high';
case StandardDeployment = 'standard-deployment';
case ProductionDeployment = 'production-deployment';
case WorkerDefault = 'worker-default';
case WorkerHigh = 'worker-high';
case WorkerStandardDeployment = 'worker-standard-deployment';
case WorkerProductionDeployment = 'worker-production-deployment';
}