Merged in bugfix/MAPG-180-dont-echo-void (pull request #162)
MAPG-180 don't echo void
This commit is contained in:
commit
a97a6f8977
@ -36,7 +36,7 @@ if ($match !== null) {
|
|||||||
|
|
||||||
if ($response instanceof MapGuesser\Interfaces\Response\IContent) {
|
if ($response instanceof MapGuesser\Interfaces\Response\IContent) {
|
||||||
header('Content-Type: ' . $response->getContentType() . '; charset=UTF-8');
|
header('Content-Type: ' . $response->getContentType() . '; charset=UTF-8');
|
||||||
echo $response->render();
|
$response->render();
|
||||||
|
|
||||||
return;
|
return;
|
||||||
} elseif ($response instanceof MapGuesser\Interfaces\Response\IRedirect) {
|
} elseif ($response instanceof MapGuesser\Interfaces\Response\IRedirect) {
|
||||||
@ -49,4 +49,4 @@ if ($match !== null) {
|
|||||||
|
|
||||||
$content = new MapGuesser\Response\HtmlContent('error/404');
|
$content = new MapGuesser\Response\HtmlContent('error/404');
|
||||||
header('Content-Type: text/html; charset=UTF-8', true, 404);
|
header('Content-Type: text/html; charset=UTF-8', true, 404);
|
||||||
echo $content->render();
|
$content->render();
|
||||||
|
Loading…
Reference in New Issue
Block a user