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