diff --git a/HttpServer/Events/OnRequest.php b/HttpServer/Events/OnRequest.php index f38c08ac..3ee3ae4a 100644 --- a/HttpServer/Events/OnRequest.php +++ b/HttpServer/Events/OnRequest.php @@ -53,6 +53,7 @@ class OnRequest extends Callback public function onRequest(Request $request, Response $response) { try { + var_dump($request); if ($request->header['request_method'] === 'OPTIONS') { $response->status(200); return $response->end();