| 12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * @package merchant
- *
- * @author xaboy
- * @day 2020-05-08
- *
- *
- */
- namespace crmeb\jobs;
- use crmeb\interfaces\JobInterface;
- use think\facade\Log;
- use think\queue\Job;
- class TestJob implements JobInterface
- {
- public function fire($job, $data)
- {
- Log::info(var_export($data, 1));
- $job->delete();
- }
- public function failed($data)
- {
- // TODO: Implement failed() method.
- }
- }
|