DemoJob.php 432 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. namespace app\jobs;
  8. use yii\base\BaseObject;
  9. use yii\queue\JobInterface;
  10. class DemoJob extends BaseObject implements JobInterface
  11. {
  12. public $text;
  13. public function execute($queue)
  14. {
  15. \Yii::error('这是测试队列任务 => ' . $this->text);
  16. }
  17. }