Adding query delim

This commit is contained in:
Dennis Eichhorn 2016-10-05 16:13:39 +02:00
parent dd6016bcbd
commit d3200d5ac0

View File

@ -263,7 +263,7 @@ class Http implements UriInterface
public function getRoute() : string
{
return ($this->path ?? '') . $this->getQuery();
return ($this->path ?? '') . '?' . $this->getQuery();
}
/**