zhamao-framework/src/ZM/Bootstrap/SetInternalTimezone.php
2023-03-07 23:07:52 +08:00

16 lines
291 B
PHP

<?php
declare(strict_types=1);
namespace ZM\Bootstrap;
use ZM\HasRuntimeInfo;
class SetInternalTimezone implements Bootstrapper
{
public function bootstrap(HasRuntimeInfo $runtime_info): void
{
date_default_timezone_set(config('global.runtime.timezone', 'UTC'));
}
}