Files
sbnews/server/config/console.php
T
2026-06-11 12:15:29 +08:00

21 lines
813 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',
],
];