Skip to content

Commit 71113af

Browse files
committed
Fix PHP 8.1 deprecations
1 parent 864568f commit 71113af

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
@@ -520,7 +520,7 @@ private function renderCell(array $row, int $column, string $cellFormat): string
520520
if ($isNotStyledByTag) {
521521
$cellFormat = $cell->getStyle()->getCellFormat();
522522
if (!\is_string($cellFormat)) {
523-
$tag = http_build_query($cell->getStyle()->getTagOptions(), null, ';');
523+
$tag = http_build_query($cell->getStyle()->getTagOptions(), '', ';');
524524
$cellFormat = '<'.$tag.'>%s</>';
525525
}
526526

0 commit comments

Comments
 (0)