| 123456789101112131415161718192021 |
- <?php
- namespace UCore\Commands;
- use Illuminate\Console\Command;
- /**
- * UCore 示例命令
- *
- * 用于演示 UCore 命令系统的示例命令
- */
- class ExampleCommand extends Command
- {
- protected $signature = 'ucore:example';
- protected $description = 'UCore示例命令';
- public function handle()
- {
- $this->info('UCore命令执行成功');
- }
- }
|