app->singleton('debug.analyzer', function ($app) { return new Services\SystemAnalyzer(); }); } /** * Bootstrap services. */ public function boot(): void { if ($this->app->runningInConsole()) { $this->commands([ SystemDebug::class, FindDuplicateViews::class, ]); } } }