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