26 lines
1.0 KiB
PHP
Executable File
26 lines
1.0 KiB
PHP
Executable File
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 控制台配置
|
|
// +----------------------------------------------------------------------
|
|
return [
|
|
// 指令定义
|
|
'commands' => [
|
|
// 定时任务
|
|
'crontab' => 'app\common\command\Crontab',
|
|
// 修改超级管理员密码
|
|
'password' => 'app\common\command\Password',
|
|
// 关闭超时未付款订单
|
|
'order_close' => 'app\common\command\OrderClose',
|
|
// 关闭超过预约时间的订单
|
|
'appoint_order_close' => 'app\common\command\AppointOrderClose',
|
|
// 订单退款
|
|
'order_refund' => 'app\common\command\OrderRefund',
|
|
// 订单退款查询
|
|
'order_refund_query' => 'app\common\command\OrderRefundQuery',
|
|
'settle_order' => 'app\common\command\SettleOrder',
|
|
'map_key_reset' => 'app\common\command\MapKeyReset',
|
|
'order_abnormal_notice' => 'app\common\command\OrderAbnormalNotice',
|
|
'order_comment' => 'app\common\command\OrderComment'
|
|
],
|
|
];
|