You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
745 B
18 lines
745 B
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 控制台配置
|
|
// +----------------------------------------------------------------------
|
|
return [
|
|
// 指令定义
|
|
'commands' => [
|
|
//消息队列 自定义命令
|
|
'queue:work' => 'think\queue\command\Work',
|
|
'queue:restart' => 'think\queue\command\Restart',
|
|
'queue:listen' => 'think\queue\command\Listen',
|
|
'addon:install' => 'app\command\Addon\Install',
|
|
'addon:uninstall' => 'app\command\Addon\Uninstall',
|
|
'menu:refresh' => 'app\command\Menu',
|
|
#自定义定时任务
|
|
'OrderClose' => 'app\command\hygl\OrderClose',//会员管理-30分钟自动关闭尚未支付的订单
|
|
],
|
|
];
|
|
|