19 lines
952 B
PHP
19 lines
952 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 控制台配置
|
|
// +----------------------------------------------------------------------
|
|
return [
|
|
// 指令定义
|
|
'commands' => [
|
|
'crontab' => 'app\common\command\Crontab',
|
|
'order_close' => 'app\common\command\OrderClose',
|
|
'order_finish' => 'app\common\command\OrderFinish',
|
|
'distribution_order' => 'app\common\command\DistributionOrder',
|
|
'user_distribution' => 'app\common\command\UserDistribution', //更新会员分销信息
|
|
'bargain_close' => 'app\common\command\BargainClose', //更新砍价记录状态
|
|
'team_end' => 'app\common\command\TeamEnd', //拼团超时关闭
|
|
'password' => 'app\common\command\Password', //管理员密码
|
|
'award_integral' => 'app\common\command\AwardIntegral', //结算消费赠送积分
|
|
],
|
|
];
|