console.php 608 B

1234567891011121314151617
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 控制台配置
  4. // +----------------------------------------------------------------------
  5. return [
  6. // 指令定义
  7. 'commands' => [
  8. // 定时任务
  9. 'crontab' => 'app\common\command\Crontab',
  10. // 退款查询
  11. 'query_refund' => 'app\common\command\QueryRefund',
  12. // mq队列任务
  13. 'query_add_agreement' => 'app\common\command\AddAgreementPdf',
  14. //工程师每日开启接单的通知
  15. 'open_obtain_order' => 'app\common\command\OpenObtainOrder',
  16. ],
  17. ];