From 4c9f33a6dc32ac13435fdd7663e0ab3c209508bb Mon Sep 17 00:00:00 2001 From: whwyy Date: Tue, 30 Dec 2025 21:41:32 +0800 Subject: [PATCH] eee --- src/Base/AbstractHandler.php | 2 -- src/Base/NotFoundController.php | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Base/AbstractHandler.php b/src/Base/AbstractHandler.php index 2731565..e37a4ce 100644 --- a/src/Base/AbstractHandler.php +++ b/src/Base/AbstractHandler.php @@ -44,8 +44,6 @@ abstract class AbstractHandler $middleware = $this->middlewares[$this->offset]; $this->offset += 1; - - var_dump($this->handler); return $middleware->process($request, $this); } diff --git a/src/Base/NotFoundController.php b/src/Base/NotFoundController.php index 6bc93b0..fdf916e 100644 --- a/src/Base/NotFoundController.php +++ b/src/Base/NotFoundController.php @@ -15,8 +15,8 @@ class NotFoundController extends Controller */ public function fail(): ResponseInterface { + var_dump($this->request); if ($this->request->getMethod() == 'OPTIONS') { - var_dump($this->response); return $this->response->html(''); } else { return $this->response->withStatus(404, "not found page.");