From a03c5e41673e0ad995a2115720a5ecfda2913791 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Fri, 27 Nov 2020 15:02:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HttpServer/Events/OnRequest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/HttpServer/Events/OnRequest.php b/HttpServer/Events/OnRequest.php index b2f7f886..134a385c 100644 --- a/HttpServer/Events/OnRequest.php +++ b/HttpServer/Events/OnRequest.php @@ -39,8 +39,10 @@ class OnRequest extends Callback { Coroutine::defer(function () { fire(Event::EVENT_AFTER_REQUEST); + echo 'after onRequest' . PHP_EOL; }); $this->onRequest($request, $response); + echo 'onRequest' . PHP_EOL; }