routes[] = [ "path"=> $path, "params"=> $params ]; } public function match (string $path,): array|bool { foreach ($this->routes as $route) { if ($route["path"] === $path) { return $route["params"]; } } return false; } }