/
Wild_RNB
/
ASU
Обзор
Документация
Войти
/
Wild_RNB
/
ASU
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
src/Runtime/State.php
25 строк
419 B
am190620045-afk
Add ASU runtime state storage
15 июл 2026, 21:01
15 июл 2026, 21:01
0ba5cac
Код
Авторство
О чём код?
<?php declare(strict_types=1); namespace ASU\Runtime; final class State { private array $state = []; public function set(string $key, mixed $value): void { $this->state[$key] = $value; } public function get(string $key, mixed $default = null): mixed { return $this->state[$key] ?? $default; } public function all(): array { return $this->state; } }