We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c641ed commit 7ce16e6Copy full SHA for 7ce16e6
src/Renderer/JsonErrorRenderer.php
@@ -59,7 +59,7 @@ private function getTraceEntriesJsonArray(array $traceEntries): array
59
}, $entry['args']);
60
$truncatedArgsString = implode(', ', $truncatedArgs);
61
$isNotVendor = $entry['nonVendorClass'] === 'non-vendor';
62
- $traceJson[$key] = "#$key " . $isNotVendor ? '(src) ' : '(vendor) ' . $entry['classAndFunction'] .
+ $traceJson[$key] = "#$key " . ($isNotVendor ? '(src) ' : '(vendor) ') . $entry['classAndFunction'] .
63
'(' . $truncatedArgsString . ') called in (file)' . $entry['fileName'] . ':' . $entry['line'] . ']';
64
}
65
0 commit comments