/
Wild_RNB
/
ASU
Обзор
Документация
Войти
/
Wild_RNB
/
ASU
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
scripts/performance-gate.php
17 строк
297 B
am190620045-afk
Add runtime performance gate script
15 июл 2026, 22:16
15 июл 2026, 22:16
2e89e0e
Код
Авторство
О чём код?
<?php declare(strict_types=1); require dirname(__DIR__) . '/vendor/autoload.php'; use ASU\Runtime\Performance; $seconds = (float) ($argv[1] ?? 0); $result = (new Performance())->check($seconds); if ($result['status'] !== 'ok') { exit(1); } echo json_encode($result, JSON_PRETTY_PRINT);