console.php 401 B

123456789101112
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 控制台配置
  4. // +----------------------------------------------------------------------
  5. return [
  6. // 指令定义
  7. 'commands' => [
  8. 'queue:work' => 'think\queue\command\Work',
  9. 'queue:restart' => 'think\queue\command\Restart',
  10. 'queue:listen' => "think\queue\command\Listen"
  11. ],
  12. ];