Skip to content

Commit

Permalink
Issue #55: Make ServerException silent.
Browse files Browse the repository at this point in the history
  • Loading branch information
ademarco committed Oct 20, 2017
1 parent 9657787 commit 1b7d1fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ protected function ensureValidRequest()
$messages['server'] = $_SERVER;
$messages['raw_post'] = file_get_contents('php://input');

$this->dispatchExceptionEvent(new ServerException(print_r($messages, true)));
$this->dispatchExceptionEvent(new ServerException(print_r($messages, true)), true);
}
}
}

0 comments on commit 1b7d1fb

Please sign in to comment.