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 fa71652 commit 4e74cc5Copy full SHA for 4e74cc5
src/Renderer/Html/SideBySide.php
@@ -196,7 +196,7 @@ protected function renderTableReplace(array $change): string
196
$newLineNum = $change['old']['offset'] + $no + 1;
197
$newLine = '<span>' . $change['new']['lines'][$no] . '</span>';
198
} else {
199
- $newLineNum = '';
+ $newLineNum = null;
200
$newLine = '';
201
}
202
@@ -216,7 +216,7 @@ protected function renderTableReplace(array $change): string
216
$oldLineNum = $change['old']['offset'] + $no + 1;
217
$oldLine = '<span>' . $change['old']['lines'][$no] . '</span>';
218
219
- $oldLineNum = '';
+ $oldLineNum = null;
220
$oldLine = '';
221
222
0 commit comments