From ac4315bcb9f30a3a4f410b43d973bbf482b6c814 Mon Sep 17 00:00:00 2001 From: xl Date: Thu, 29 Aug 2024 16:08:11 +0800 Subject: [PATCH] eee --- src/RouterCollector.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/RouterCollector.php b/src/RouterCollector.php index 01199a3..9dcf459 100644 --- a/src/RouterCollector.php +++ b/src/RouterCollector.php @@ -273,6 +273,7 @@ class RouterCollector implements \ArrayAccess, \IteratorAggregate */ public function query(string $path, string $method): HttpRequestHandler { + var_dump($this->httpHandler, $method . '_' . $path); return $this->httpHandler[$method . '_' . $path] ?? new HttpRequestHandler([], $this->found); }