Files
oficial/app/src/Service/Worker.php

10 lines
128 B
PHP
Raw Normal View History

2025-05-10 12:30:35 -04:00
<?php
namespace Incoviba\Service;
use Incoviba\Model;
interface Worker
{
public function execute(Model\Job $job): bool;
}