mirror of
https://github.com/filp/whoops.git
synced 2026-08-31 12:38:10 +00:00
Fixed invalid codeblock syntax
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user