We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef66d12 commit 2cdcb6bCopy full SHA for 2cdcb6b
example/demo_cli.php
@@ -9,6 +9,8 @@
9
'section' => ['f_black', 'b_cyan'],
10
];
11
12
+$manyNewlines = "\n\n\n\n";
13
+
14
echo CliColor::color("Unified Diff\n============", $colorStyles['section']) . "\n\n";
15
16
// generate a unified diff
@@ -20,7 +22,7 @@
20
22
$rendererOptions
21
23
);
24
-echo $unifiedResult . "\n\n\n\n";
25
+echo $unifiedResult . $manyNewlines;
26
27
echo CliColor::color("Context Diff\n============", $colorStyles['section']) . "\n\n";
28
@@ -33,4 +35,4 @@
33
35
34
36
37
-echo $contextResult . "\n\n\n\n";
38
+echo $contextResult . $manyNewlines;
0 commit comments