ExampleCommand.php 375 B

123456789101112131415161718192021
  1. <?php
  2. namespace UCore\Commands;
  3. use Illuminate\Console\Command;
  4. /**
  5. * UCore 示例命令
  6. *
  7. * 用于演示 UCore 命令系统的示例命令
  8. */
  9. class ExampleCommand extends Command
  10. {
  11. protected $signature = 'ucore:example';
  12. protected $description = 'UCore示例命令';
  13. public function handle()
  14. {
  15. $this->info('UCore命令执行成功');
  16. }
  17. }