20 lines
675 B
PHP
20 lines
675 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 控制台配置
|
|
// +----------------------------------------------------------------------
|
|
return [
|
|
// 指令定义
|
|
'commands' => [
|
|
// 定时任务
|
|
'crontab' => 'app\common\command\Crontab',
|
|
// 同步波场钱包余额
|
|
'tron_order' => 'app\common\command\TronOrder',
|
|
// 用户资金释放
|
|
'unfreeze_funds' => 'app\common\command\UnfreezeFunds',
|
|
// 投资结算
|
|
'invest_settle' => 'app\common\command\InvestSettle',
|
|
// 项目进度自增
|
|
'item_progress' => 'app\common\command\ItemProgress',
|
|
],
|
|
];
|