UserHistoryJob.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace crmeb\jobs;
  12. use crmeb\interfaces\JobInterface;
  13. use think\facade\Log;
  14. use think\queue\Job;
  15. use app\common\repositories\store\product\ProductRepository;
  16. class UserHistoryJob implements JobInterface
  17. {
  18. public function fire($job, $data)
  19. {
  20. try{
  21. app()->make(ProductRepository::class)->checkProductByExtension();
  22. $job->delete();
  23. }catch (\Exception $exception){
  24. Log::info(var_export($exception, 1));
  25. }
  26. }
  27. public function failed($data)
  28. {
  29. // TODO: Implement failed() method.
  30. }
  31. }