fix global define bootstrapper relative path

This commit is contained in:
sunxyw
2022-12-21 00:38:37 +08:00
parent 4554bbc85b
commit 3f2bd69002

View File

@@ -8,6 +8,6 @@ class LoadGlobalDefines
{ {
public function bootstrap(array $config): void public function bootstrap(array $config): void
{ {
require zm_dir(SOURCE_ROOT_DIR . '/src/Globals/global_defines_framework.php'); require FRAMEWORK_ROOT_DIR . '/src/Globals/global_defines_framework.php';
} }
} }