mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2025-12-14 19:52:48 +00:00
16 lines
508 B
PHP
16 lines
508 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 控制台配置
|
|
// +----------------------------------------------------------------------
|
|
return [
|
|
// 指令定义
|
|
'commands' => [
|
|
// 定时任务
|
|
'crontab' => 'app\command\CronTab',
|
|
//消息队列 自定义命令
|
|
'queue:work' => 'think\queue\command\Work',
|
|
'queue:restart' => 'think\queue\command\Restart',
|
|
'queue:listen' => 'think\queue\command\Listen'
|
|
],
|
|
];
|