Queue.php 434 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace crmeb\command;
  3. use Channel\Server;
  4. use crmeb\services\WorkermanService;
  5. use think\console\Command;
  6. use think\console\Input;
  7. use think\console\input\Argument;
  8. use think\console\input\Option;
  9. use think\console\Output;
  10. use think\facade\Log;
  11. use Workerman\Worker;
  12. class Queue extends Command
  13. {
  14. protected function configure()
  15. {
  16. }
  17. protected function execute(Input $input, Output $output)
  18. {
  19. }
  20. }