2023-03-17 16:43:27 +08:00

18 lines
301 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* 清息队列任务 异步触发 接口
*
* @author刘孝全
* @emailq8197264@126.com
* @date 2023年03月17日
*/
namespace app\common\jobs\interfaces;
interface JobInterface
{
public function fire($job, $data);
public function failed($data);
}