1234567891011121314151617 |
- <?php
- // +----------------------------------------------------------------------
- // | 控制台配置
- // +----------------------------------------------------------------------
- return [
- // 指令定义
- 'commands' => [
- 'Total' => 'app\command\Total',
- 'Task' => 'app\command\Task',
- 'OrderPush' => 'app\command\OrderPush',
- 'WeixinPush' => 'app\command\WeixinPush',
- 'WeixinPushOrder' => 'app\command\WeixinPushOrder',
- 'ExpInquiry' => 'app\command\ExpInquiry',
- 'TotalXh' => 'app\command\TotalXh',
- 'MemberTag' => 'app\command\MemberTag'
- ],
- ];
|