DevCommand.php 467 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace App\Module\Dev\Commands;
  3. use Illuminate\Console\Command;
  4. class DevCommand extends Command
  5. {
  6. /**
  7. * 命令名称
  8. *
  9. * @var string
  10. */
  11. protected $signature = 'dev:test';
  12. /**
  13. * 命令描述
  14. *
  15. * @var string
  16. */
  17. protected $description = 'Dev模块测试命令';
  18. /**
  19. * 执行命令
  20. */
  21. public function handle()
  22. {
  23. $this->info('Dev模块测试命令执行成功');
  24. }
  25. }