Jobs not being updated

This commit is contained in:
Juan Pablo Vial
2025-05-13 16:06:09 -04:00
parent d536342425
commit 024a6eae54
2 changed files with 20 additions and 1 deletions

View File

@ -5,7 +5,7 @@ use PDOException;
use Psr\Log\LoggerInterface;
use Incoviba\Common\Ideal;
use Incoviba\Common\Implement\Exception\EmptyResult;
use Incoviba\Exception\ServiceAction\{Create,Read};
use Incoviba\Exception\ServiceAction\{Create, Read, Update};
use Incoviba\Repository;
use Incoviba\Model;
@ -44,6 +44,21 @@ class Job extends Ideal\Service
}
}
/**
* @param Model\Job $job
* @return bool
* @throws Update
*/
public function execute(Model\Job $job): bool
{
try {
$this->jobRepository->edit($job, ['executed' => true]);
return true;
} catch (EmptyResult | PDOException $exception) {
throw new Update(__CLASS__, $exception);
}
}
protected function process(Model\Job $job): Model\Job
{
return $job;