/
Wild_RNB
/
ASU
Обзор
Документация
Войти
/
Wild_RNB
/
ASU
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
src/Module/Status.php
21 строка
404 B
am190620045-afk
Add ASU module status provider
15 июл 2026, 21:01
15 июл 2026, 21:01
5257d39
Код
Авторство
О чём код?
<?php declare(strict_types=1); namespace ASU\Module; final class Status { public function __construct(private readonly Registry $registry) { } public function report(): array { return [ 'total' => count($this->registry->all()), 'enabled' => count($this->registry->enabled()), 'modules' => $this->registry->enabled(), ]; } }