We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c212334 commit 44e31d1Copy full SHA for 44e31d1
src/DocBlock/Tags/InvalidTag.php
@@ -87,7 +87,7 @@ private function flattenExceptionBacktrace(Throwable $exception): void
87
if (isset($trace[0]['args'])) {
88
$trace = array_map(
89
function (array $call): array {
90
- $call['args'] = array_map([$this, 'flattenArguments'], $call['args']);
+ $call['args'] = array_map([$this, 'flattenArguments'], $call['args'] ?? []);
91
92
return $call;
93
},
0 commit comments