Fixed invalid codeblock syntax

This commit is contained in:
Graham Campbell
2020-11-15 20:47:48 +00:00
committed by GitHub
parent 40173bb7e7
commit aec99affc1
+7 -7
View File
@@ -72,13 +72,13 @@ You may also want to override some system calls Whoops does. To do that, extend
You may also collect the HTML generated to process it yourself:
```php
$whoops = new \Whoops\Run;
$whoops->allowQuit(false);
$whoops->writeToOutput(false);
$whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler);
$html = $whoops->handleException($e);
```
```php
$whoops = new \Whoops\Run;
$whoops->allowQuit(false);
$whoops->writeToOutput(false);
$whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler);
$html = $whoops->handleException($e);
```
### Available Handlers