| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace App\Module\Game\Commands;
- use Illuminate\Console\Command;
- class TestCommands extends Command
- {
- /**
- * 控制台命令的名称和签名
- *
- * @var string
- */
- protected $signature = 'game:test';
- /**
- * 命令描述
- *
- * @var string
- */
- protected $description = 'Test commands';
- /**
- * 执行命令
- */
- public function handle()
- {
- echo '完成';
- }
- }
|