From 416c7f2e2054d413234c6bf0cc1e26368d49f2b3 Mon Sep 17 00:00:00 2001 From: Ed Hanton Date: Thu, 18 Jul 2024 17:34:22 +0100 Subject: [PATCH] Update ServiceProvider.php --- src/ServiceProvider.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ServiceProvider.php b/src/ServiceProvider.php index f5858ea..02e4866 100644 --- a/src/ServiceProvider.php +++ b/src/ServiceProvider.php @@ -11,7 +11,7 @@ class ServiceProvider extends LaravelServiceProvider { - const DISPLAY_NAME = 'insights'; + const DISPLAY_NAME = 'application_insights'; /** * Bootstrap the application events. @@ -19,7 +19,7 @@ class ServiceProvider extends LaravelServiceProvider public function boot(): void { $this->publishes([ - __DIR__ . '/../config/application_insights.php' => config_path('application_insights.php'), + __DIR__ . '/../config/application_insights.php' => config_path(static::DISPLAY_NAME), ]); if (config(static::DISPLAY_NAME . '.is_enabled')) {