Files
shop-platform/src/config/console.php
2025-10-29 15:32:26 +08:00

13 lines
401 B
PHP

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