File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ final class HtmlRenderer implements ThrowableRendererInterface
129129 * @param int|null $maxTraceLines The maximum number of trace source code lines to be displayed. Defaults to 13.
130130 * @param string|null $traceHeaderLine Deprecated, use {@see traceLink} instead of. The trace header line with
131131 * placeholders to be substituted. Defaults to null.
132- * @param string| Closure|null $traceLink The trace link. It can be a string with placeholders `file` and `line` to
132+ * @param Closure|string |null $traceLink The trace link. It can be a string with placeholders `file` and `line` to
133133 * be substituted or a closure that accepts `file` and `line` parameters and returns a string or null. Examples:
134134 * - string "ide://open?file={file}&line={line}";
135135 * - closure:
Original file line number Diff line number Diff line change @@ -308,7 +308,7 @@ public static function dataTraceLinkGenerator(): iterable
308308 yield [null , static fn () => null ];
309309 yield [
310310 'phpstorm://open?file=test.php&line=42 ' ,
311- static fn (string $ file , int |null $ line ) => "phpstorm://open?file= $ file&line= $ line "
311+ static fn (string $ file , int |null $ line ) => "phpstorm://open?file= $ file&line= $ line " ,
312312 ];
313313 yield [
314314 'phpstorm://open?file=test.php&line=42 ' ,
You can’t perform that action at this time.
0 commit comments