We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0743fee commit 403072fCopy full SHA for 403072f
installation/index.php
@@ -68,6 +68,10 @@
68
/*****************************
69
* SEND RESPONSE TO WEBSERVER *
70
*****************************/
71
-//~r($response->getStatusCode());
72
$emitter = $DIContainer->get('emitter');
73
-$emitter->emit($response);
+//in case any output disturbs emitter, catch the exception and display the output
+try {
74
+ $emitter->emit($response);
75
+} catch(\Exception $e) {
76
+ xx($e);
77
+}
0 commit comments