Merged in bugfix/MAPG-180-dont-echo-void (pull request #162)

MAPG-180 don't echo void
This commit is contained in:
Bence Pőcze 2020-06-27 12:26:57 +00:00
commit a97a6f8977

View File

@ -36,7 +36,7 @@ if ($match !== null) {
if ($response instanceof MapGuesser\Interfaces\Response\IContent) {
header('Content-Type: ' . $response->getContentType() . '; charset=UTF-8');
echo $response->render();
$response->render();
return;
} elseif ($response instanceof MapGuesser\Interfaces\Response\IRedirect) {
@ -49,4 +49,4 @@ if ($match !== null) {
$content = new MapGuesser\Response\HtmlContent('error/404');
header('Content-Type: text/html; charset=UTF-8', true, 404);
echo $content->render();
$content->render();