load(); if (getenv('VERSION') !== ENV_VERSION) { Logger::getInstance()->critical("Env version mismatch. Update {$envPath} from {$envPathExample}", [ 'VERSION in .env' => getenv('VERSION'), 'required' => ENV_VERSION ]); throw new RuntimeException('.env version mismatch'); } } } if ($memoryLimit = getenv('MEMORY_LIMIT')) { ini_set('memory_limit', $memoryLimit); } if ($timezone = getenv('TIMEZONE')) { date_default_timezone_set($timezone); } if (!function_exists('debug')) { function debug(string $message, array $context) { Logger::getInstance()->debug($message, $context); } } if (!function_exists('info')) { function info(string $message, array $context = []) { Logger::getInstance()->info($message, $context); } } if (!function_exists('notice')) { function notice($message, array $context = []) { Logger::getInstance()->notice($message, $context); } } if (!function_exists('warning')) { function warning(string $message, array $context = []) { Logger::getInstance()->warning($message, $context); } } if (!function_exists('error')) { function error(string $message, array $context = []) { Logger::getInstance()->error($message, $context); } } if (!function_exists('critical')) { function critical(string $message, array $context = []) { Logger::getInstance()->critical($message, $context); } } if (!function_exists('alert')) { function alert(string $message, array $context = []) { Logger::getInstance()->alert($message, $context); } } if (!function_exists('emergency')) { function emergency(string $message, array $context = []) { Logger::getInstance()->emergency($message, $context); } }