TestCommands.php 452 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace App\Module\Game\Commands;
  3. use Illuminate\Console\Command;
  4. class TestCommands extends Command
  5. {
  6. /**
  7. * 控制台命令的名称和签名
  8. *
  9. * @var string
  10. */
  11. protected $signature = 'game:test';
  12. /**
  13. * 命令描述
  14. *
  15. * @var string
  16. */
  17. protected $description = 'Test commands';
  18. /**
  19. * 执行命令
  20. */
  21. public function handle()
  22. {
  23. echo '完成';
  24. }
  25. }