From 5d8ce5af1c88c121701277c10e44d2ef2ffafebf Mon Sep 17 00:00:00 2001 From: Jake Esser Date: Thu, 1 Aug 2024 11:37:11 +0200 Subject: [PATCH] feat(environment): Fixed tab formatting --- lib/AppInfo/Application.php | 2 +- lib/Config.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php index 5ac0fe4..2b32016 100644 --- a/lib/AppInfo/Application.php +++ b/lib/AppInfo/Application.php @@ -75,7 +75,7 @@ public function boot(IBootContext $context): void { 'release' => $config->getServerVersion(), 'traces_sample_rate' => $config->getSamplingRate(), 'profiles_sample_rate' => $config->getProfilesSamplingRate(), - 'environment' => $config->getEnvironment(), + 'environment' => $config->getEnvironment(), ]); } }); diff --git a/lib/Config.php b/lib/Config.php index 08d6d86..80e15a9 100644 --- a/lib/Config.php +++ b/lib/Config.php @@ -97,7 +97,7 @@ public function getProfilesSamplingRate(): float { }; } - public function getEnvironment(): string { - return $this->config->getSystemValue('sentry.environment', 'production'); - } + public function getEnvironment(): string { + return $this->config->getSystemValue('sentry.environment', 'production'); + } }