ExampleCommand.php 292 B

12345678910111213141516
  1. <?php
  2. namespace UCore\Commands;
  3. use Illuminate\Console\Command;
  4. class ExampleCommand extends Command
  5. {
  6. protected $signature = 'ucore:example';
  7. protected $description = 'UCore示例命令';
  8. public function handle()
  9. {
  10. $this->info('UCore命令执行成功');
  11. }
  12. }