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 128cbbd commit c5d2b2fCopy full SHA for c5d2b2f
src/Handlers/AbstractHandler.php
@@ -165,7 +165,7 @@ protected function getTrace(throwable $exception): array
165
166
foreach ($trace as $key => $stackPoint) {
167
$new[$key] = $stackPoint;
168
- $new[$key]['args'] = array_map('gettype', (array)$new[$key]['args']);
+ $new[$key]['args'] = array_map('gettype', (array)($new[$key]['args'] ?? []));
169
if($key >= (static::MAX_TRACE_LENGTH - 1)) {
170
break;
171
}
0 commit comments