From d3200d5ac0404fb015cb4fc8e851480b528e222f Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 5 Oct 2016 16:13:39 +0200 Subject: [PATCH] Adding query delim --- Uri/Http.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Uri/Http.php b/Uri/Http.php index 009a4a776..9ea8bcc06 100644 --- a/Uri/Http.php +++ b/Uri/Http.php @@ -263,7 +263,7 @@ class Http implements UriInterface public function getRoute() : string { - return ($this->path ?? '') . $this->getQuery(); + return ($this->path ?? '') . '?' . $this->getQuery(); } /**