22 lines
882 B
PHP
22 lines
882 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 控制台配置
|
|
// +----------------------------------------------------------------------
|
|
return [
|
|
// 指令定义
|
|
'commands' => [
|
|
// 定时任务
|
|
'crontab' => 'app\common\command\Crontab',
|
|
// 退款查询
|
|
'query_refund' => 'app\common\command\QueryRefund',
|
|
// 懂球帝爬虫
|
|
'crawler' => 'app\common\command\CrawlerCommand',
|
|
'worldcup_article_translate' => 'app\common\command\WorldcupArticleTranslate',
|
|
'article_ai_comment' => 'app\common\command\ArticleAiComment',
|
|
'sms_verify' => 'app\common\command\SmsVerifyCommand',
|
|
'kb:rebuild' => 'app\common\command\KbRebuild',
|
|
'kb:consume' => 'app\common\command\KbConsume',
|
|
'kb:enqueue-recent' => 'app\common\command\KbEnqueueRecent',
|
|
],
|
|
];
|