We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c4ad5a commit ea2d43dCopy full SHA for ea2d43d
example/demo_cli.php
@@ -14,12 +14,12 @@
14
new OutputFormatter(
15
false,
16
[
17
- 'section' => new OutputFormatterStyle('white', 'cyan', ['bold']),
+ 'section' => new OutputFormatterStyle('black', 'cyan', []),
18
]
19
)
20
);
21
22
-$output->writeln("<section>Unified Diff\n============\n</>");
+$output->write("<section>Unified Diff\n============</>\n\n");
23
24
// generate a unified diff
25
$unifiedResult = DiffHelper::calculate(
@@ -32,7 +32,7 @@
32
33
echo $unifiedResult . "\n\n\n\n";
34
35
-$output->writeln("<section>Context Diff\n============\n</>");
+$output->write("<section>Context Diff\n============</>\n\n");
36
37
// generate a context diff
38
$contextResult = DiffHelper::calculate(
0 commit comments