admin-api/crmeb/jobs/TestJob.php

27 lines
362 B
PHP

<?php
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.
}
}