Add query parameters to uriFactory

This commit is contained in:
Dennis Eichhorn 2016-09-15 17:47:50 +02:00
parent 9c708c921f
commit d6126b1ffc

View File

@ -211,6 +211,10 @@ class Request extends RequestAbstract
UriFactory::setQuery('/', $this->uri->getPath());
UriFactory::setQuery(':user', $this->uri->getUser());
UriFactory::setQuery(':pass', $this->uri->getPass());
foreach($this->data as $key => $value) {
UriFactory::setQuery('?' . $key, $value);
}
}
/**