You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
451 B
PHP
15 lines
451 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 控制台配置
|
|
// +----------------------------------------------------------------------
|
|
return [
|
|
// 指令定义
|
|
'commands' => [
|
|
// 定时任务
|
|
'crontab' => 'app\common\command\Crontab',
|
|
// 退款查询
|
|
'query_refund' => 'app\common\command\QueryRefund',
|
|
'stat_step_data' => 'app\command\StatStepData',
|
|
],
|
|
];
|