Files
hyperf_data/config/autoload/exceptions.php
2025-09-30 15:27:07 +08:00

14 lines
209 B
PHP

<?php
declare(strict_types=1);
use Aether\Exception\Handler\JsonRpcExceptionHandler;
return [
'handler' => [
'jsonrpc-http' => [
JsonRpcExceptionHandler::class,
],
],
];