This commit is contained in:
2025-12-18 15:39:44 +08:00
parent 15d54e8ffe
commit 975e7a3cd0
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -33,8 +33,8 @@ class Request implements ServerRequestInterface
*/
public function __construct()
{
$this->middlewares = \config('request.middlewares', []);
$this->exception = \config('request.exception', ExceptionHandlerDispatcher::class);
$this->middlewares = \config('servers.request.middlewares', []);
$this->exception = \config('servers.request.exception', ExceptionHandlerDispatcher::class);
}