Skip to content

Commit 6cdb590

Browse files
committed
Apply fixes from StyleCI
1 parent e503749 commit 6cdb590

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Renderer/HtmlRenderer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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:

tests/Renderer/HtmlRendererTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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',

0 commit comments

Comments
 (0)