/
Wild_RNB
/
ASU
Обзор
Документация
Войти
/
Wild_RNB
/
ASU
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
src/Runtime/Performance.php
21 строка
415 B
am190620045-afk
Add runtime performance threshold checker
15 июл 2026, 22:15
15 июл 2026, 22:15
3e88f3b
Код
Авторство
О чём код?
<?php declare(strict_types=1); namespace ASU\Runtime; final class Performance { public function __construct(private readonly float $threshold = 1.0) { } public function check(float $seconds): array { return [ 'boot_seconds' => $seconds, 'threshold' => $this->threshold, 'status' => $seconds <= $this->threshold ? 'ok' : 'slow', ]; } }