| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace App\Module\Dev\Commands;
- use Illuminate\Console\Command;
- class DevCommand extends Command
- {
- /**
- * 命令名称
- *
- * @var string
- */
- protected $signature = 'dev:test';
- /**
- * 命令描述
- *
- * @var string
- */
- protected $description = 'Dev模块测试命令';
- /**
- * 执行命令
- */
- public function handle()
- {
- $this->info('Dev模块测试命令执行成功');
- }
- }
|