From 31fcc46151427da22dd738c38717d45cbb9b06f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Wed, 9 Sep 2020 10:45:07 +0800 Subject: [PATCH] e --- HttpServer/Route/Node.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HttpServer/Route/Node.php b/HttpServer/Route/Node.php index 957b7a10..0d02af79 100644 --- a/HttpServer/Route/Node.php +++ b/HttpServer/Route/Node.php @@ -101,7 +101,7 @@ class Node extends Application public function afterDispatch($response) { $callback = Reduce::after($this->_after); - return $callback($response); + return $callback(\request(), $response); }