mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-17 12:44:51 +08:00
16 lines
308 B
PHP
16 lines
308 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ZM\Bootstrap;
|
|
|
|
use ZM\Config\RuntimePreferences;
|
|
|
|
class LoadGlobalDefines implements Bootstrapper
|
|
{
|
|
public function bootstrap(RuntimePreferences $preferences): void
|
|
{
|
|
require FRAMEWORK_ROOT_DIR . '/src/Globals/global_defines_framework.php';
|
|
}
|
|
}
|