/
Wild_RNB
/
ASU
Обзор
Документация
Войти
/
Wild_RNB
/
ASU
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
src/Runtime/PerformanceReport.php
20 строк
394 B
am190620045-afk
Add runtime performance report provider
15 июл 2026, 22:16
15 июл 2026, 22:16
70135c8
Код
Авторство
О чём код?
<?php declare(strict_types=1); namespace ASU\Runtime; final class PerformanceReport { public function __construct(private readonly Performance $performance) { } public function generate(float $bootSeconds): array { return [ 'runtime' => '0.2.0-beta-runtime.2', 'performance' => $this->performance->check($bootSeconds), ]; } }