8000 Merge branch '2.7' into 2.8 · symfony/console@cec9c5d · GitHub
[go: up one dir, main page]

Skip to content

Commit cec9c5d

Browse files
committed
Merge branch '2.7' into 2.8
* 2.7: Fix PHP 7.1 related failures [VarDumper] Fix for 7.1
2 parents 139e3be + 78e2035 commit cec9c5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Helper/Table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ private function fillNextRows($rows, $line)
448448
}
449449

450450
// create a two dimensional array (rowspan x colspan)
451-
$unmergedRows = array_replace_recursive(array_fill($line + 1, $nbLines, ''), $unmergedRows);
451+
$unmergedRows = array_replace_recursive(array_fill($line + 1, $nbLines, array()), $unmergedRows);
452452
foreach ($unmergedRows as $unmergedRowKey => $unmergedRow) {
453453
$value = isset($lines[$unmergedRowKey - $line]) ? $lines[$unmergedRowKey - $line] : '';
454454
$unmergedRows[$unmergedRowKey][$column] = new TableCell($value, array('colspan' => $cell->getColspan()));

0 commit comments

Comments
 (0)
0