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 a02e506 commit f751a05Copy full SHA for f751a05
changes.md
@@ -8,6 +8,7 @@
8
9
- Fixed bug where some server variables were not being set properly.
10
- Fixed inconsistent response when returning an empty collection that is meant to be transformed.
11
+- Fixed potential HHVM bug caused by `json_encode` being run on certain elements. Debug mode now returns trace as a string.
12
13
### v0.8.1
14
src/Event/ExceptionHandler.php
@@ -76,7 +76,7 @@ public function handle(Exception $exception)
76
'line' => $exception->getLine(),
77
'file' => $exception->getFile(),
78
'class' => get_class($exception),
79
- 'trace' => $exception->getTrace(),
+ 'trace' => $exception->getTraceAsString(),
80
];
81
}
82
0 commit comments