From 53d4ce2d761aa332fd613e5667ee0e4ee0bc1449 Mon Sep 17 00:00:00 2001 From: anlide Date: Fri, 6 Jun 2025 00:28:05 +0200 Subject: [PATCH] Fix root path determination --- Service/Config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Service/Config.php b/Service/Config.php index 2e7ad87..5c7af5a 100644 --- a/Service/Config.php +++ b/Service/Config.php @@ -23,6 +23,6 @@ public static function env($key, $defaultValue = null): ?string { } public static function root(): string { - return __DIR__ . '/../../../../'; + return dirname(__DIR__); } } \ No newline at end of file