From 89a64f6c827e32fe23f390650ce2b55cdc323fa1 Mon Sep 17 00:00:00 2001 From: fs Date: Sun, 22 Mar 2026 16:29:55 +0100 Subject: [PATCH] fix: env error constants --- lib/Service/System/SystemInfoService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Service/System/SystemInfoService.php b/lib/Service/System/SystemInfoService.php index 65ad2a1..5f48516 100644 --- a/lib/Service/System/SystemInfoService.php +++ b/lib/Service/System/SystemInfoService.php @@ -111,7 +111,7 @@ class SystemInfoService private function resolveEnvironment(): string { if (defined('APP_ENV')) { - return (string) APP_ENV; + return (string) constant('APP_ENV'); } $env = getenv('APP_ENV');