Skip to content

Commit 2cdcb6b

Browse files
committed
chore: nits
Signed-off-by: Jack Cherng <[email protected]>
1 parent ef66d12 commit 2cdcb6b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

example/demo_cli.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
'section' => ['f_black', 'b_cyan'],
1010
];
1111

12+
$manyNewlines = "\n\n\n\n";
13+
1214
echo CliColor::color("Unified Diff\n============", $colorStyles['section']) . "\n\n";
1315

1416
// generate a unified diff
@@ -20,7 +22,7 @@
2022
$rendererOptions
2123
);
2224

23-
echo $unifiedResult . "\n\n\n\n";
25+
echo $unifiedResult . $manyNewlines;
2426

2527
echo CliColor::color("Context Diff\n============", $colorStyles['section']) . "\n\n";
2628

@@ -33,4 +35,4 @@
3335
$rendererOptions
3436
);
3537

36-
echo $contextResult . "\n\n\n\n";
38+
echo $contextResult . $manyNewlines;

0 commit comments

Comments
 (0)