33 lines
620 B
PHP
33 lines
620 B
PHP
<?php
|
|
|
|
|
|
|
|
|
|
namespace crmeb\jobs;
|
|
|
|
|
|
use app\common\repositories\store\product\ProductPresellRepository;
|
|
use crmeb\interfaces\JobInterface;
|
|
use think\facade\Log;
|
|
use think\queue\Job;
|
|
|
|
class CheckProductPresellJob implements JobInterface
|
|
{
|
|
|
|
public function fire($job, $data)
|
|
{
|
|
try{
|
|
$make = app()->make(ProductPresellRepository::class);
|
|
$make->checkStatus(null);
|
|
}catch (\Exception $exception){
|
|
Log::info($exception->getMessage());
|
|
}
|
|
$job->delete();
|
|
}
|
|
|
|
public function failed($data)
|
|
{
|
|
// TODO: Implement failed() method.
|
|
}
|
|
}
|