File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
lib/jblond/Diff/Renderer/Html Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -34,13 +34,13 @@ public function render(): string
34
34
* Render the unified diff-view as html.
35
35
*
36
36
* Since this class extends the "HtmlArray" class which in turn extends "RendererAbstract" class, this method needs
37
- * to match the signature of RendererAbstract::renderHTML. However the second parameter isn't used and can be
37
+ * to match the signature of RendererAbstract::renderHTML() . However the second parameter isn't used and can be
38
38
* omitted.
39
39
*
40
40
* @param array $changes Contains the op-codes about the differences between "old and "new".
41
41
* @param null $object Unused.
42
42
*
43
- * @return string HTML code containing the unified differences.
43
+ * @return string HTML code containing the unified differences.
44
44
*/
45
45
public function renderHtml ($ changes , $ object = null ): string
46
46
{
@@ -56,9 +56,7 @@ public function renderHtml($changes, $object = null): string
56
56
// If this is a separate block, we're condensing code to output …,
57
57
// indicating a significant portion of the code has been collapsed as it did not change.
58
58
$ html .= <<<HTML
59
- <span class="Skipped" title="Equal lines collapsed!">
60
- <strong>…</strong>
61
- </span>
59
+ <span class="Skipped" title="Equal lines collapsed!">…</span>
62
60
HTML ;
63
61
}
64
62
You can’t perform that action at this time.
0 commit comments