Skip to content

Commit d78904a

Browse files
committed
style: make CI happy
Signed-off-by: Jack Cherng <[email protected]>
1 parent 4180e7c commit d78904a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

example/demo_web.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
$newString,
5858
'Inline',
5959
$diffOptions,
60-
['detailLevel' => 'line'] + $rendererOptions
60+
['detailLevel' => 'line'] + $rendererOptions,
6161
);
6262

6363
echo $inlineResult;

src/Renderer/Html/AbstractHtml.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ protected function htmlFixSpaces(string $string): string
333333
*/
334334
protected function htmlReplaceSpacesToHtmlTag(string $string): string
335335
{
336-
return strtr($string, [
336+
return \strtr($string, [
337337
' ' => '<span class="ch sp"> </span>',
338338
"\t" => "<span class=\"ch tab\">\t</span>",
339339
]);

0 commit comments

Comments
 (0)