castopod/modules/PodcastImport/Entities/TaskStatus.php
Yassine Doghri d8e1d4031d feat(import): run podcast imports' processes asynchronously using tasks
- use codeigniter4/tasks project to handle cron tasks
- use yassinedoghri/podcast-feed project to parse feeds for imports
2023-06-21 16:17:11 +00:00

15 lines
250 B
PHP

<?php
declare(strict_types=1);
namespace Modules\PodcastImport\Entities;
enum TaskStatus: string
{
case Queued = 'queued';
case Running = 'running';
case Canceled = 'canceled';
case Failed = 'failed';
case Passed = 'passed';
}