Files
ZangShiQi/config/console.php
2026-04-04 17:27:12 +08:00

13 lines
413 B
PHP
Executable File

<?php
// +----------------------------------------------------------------------
// | 控制台配置
// +----------------------------------------------------------------------
return [
// 指令定义
'commands' => [
'queue:work' => 'think\queue\command\Work',
'queue:restart' => 'think\queue\command\Restart',
'queue:listen' => "think\queue\command\Listen"
],
];