Files
hyperf_rbac_framework_serve…/config/autoload/exceptions.php
ctexthuang ea6abe3043
Some checks are pending
Build Docker / build (push) Waiting to run
feat : jwt
2025-09-12 18:21:19 +08:00

24 lines
640 B
PHP

<?php
declare(strict_types=1);
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://hyperf.wiki
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
return [
'handler' => [
'http' => [
Hyperf\HttpServer\Exception\Handler\HttpExceptionHandler::class,
App\Exception\Handler\ErrExceptionHandler::class,
App\Exception\Handler\ValidationExceptionHandler::class,
App\Exception\Handler\AppExceptionHandler::class,
App\Exception\Handler\JwtExceptionHandler::class,
],
],
];