CRMEB/upload/crmeb/interfaces/JobInterface.php
2019-10-15 09:33:03 +08:00

12 lines
135 B
PHP

<?php
namespace crmeb\interfaces;
use think\queue\Job;
interface JobInterface
{
public function fire(Job $job, $data): void;
}