mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-08 17:25:35 +08:00
14 lines
231 B
PHP
14 lines
231 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ZM\Bootstrap;
|
|
|
|
class LoadGlobalDefines
|
|
{
|
|
public function bootstrap(array $config): void
|
|
{
|
|
require FRAMEWORK_ROOT_DIR . '/src/Globals/global_defines_framework.php';
|
|
}
|
|
}
|