zhamao-framework/src/ZM/Bootstrap/LoadGlobalDefines.php

16 lines
308 B
PHP
Raw Normal View History

2022-11-08 17:28:07 +08:00
<?php
2022-11-08 17:33:25 +08:00
declare(strict_types=1);
2022-11-08 17:28:07 +08:00
namespace ZM\Bootstrap;
use ZM\Config\RuntimePreferences;
2023-02-24 16:49:24 +08:00
class LoadGlobalDefines implements Bootstrapper
2022-11-08 17:28:07 +08:00
{
public function bootstrap(RuntimePreferences $preferences): void
2022-11-08 17:28:07 +08:00
{
require FRAMEWORK_ROOT_DIR . '/src/Globals/global_defines_framework.php';
2022-11-08 17:28:07 +08:00
}
}