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; }