Job Queue

This commit is contained in:
Juan Pablo Vial
2025-05-10 12:30:35 -04:00
parent 61324f159b
commit 8b2de31e02
6 changed files with 251 additions and 0 deletions

View File

@ -0,0 +1,9 @@
<?php
namespace Incoviba\Service;
use Incoviba\Model;
interface Worker
{
public function execute(Model\Job $job): bool;
}