app->singleton(\App\Services\EnvService::class); } /** * 启动服务 */ public function boot(): void { // 注册Artisan命令 if ($this->app->runningInConsole()) { $this->commands([ EnvCommand::class, ]); } } }