/
Wild_RNB
/
ASU
Обзор
Документация
Войти
/
Wild_RNB
/
ASU
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
src/Config/RuntimeConfig.php
26 строк
480 B
am190620045-afk
ASU 0.3.5 - Introduce Runtime Config Provider
18 июл 2026, 17:29
18 июл 2026, 17:29
8c5d445
Код
Авторство
О чём код?
<?php declare(strict_types=1); namespace ASU\Config; final class RuntimeConfig { private array $config; public function __construct() { $loader = new Loader(); $this->config = $loader->load(dirname(__DIR__, 2) . '/config/runtime.php'); } public function get(string $key, mixed $default = null): mixed { return $this->config[$key] ?? $default; } public function all(): array { return $this->config; } }