Skip to content

Commit

Permalink
Fix PHP 8.1 deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
derrabus committed May 20, 2021
1 parent 864568f commit 71113af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Helper/Table.php
Expand Up @@ -520,7 +520,7 @@ private function renderCell(array $row, int $column, string $cellFormat): string
if ($isNotStyledByTag) {
$cellFormat = $cell->getStyle()->getCellFormat();
if (!\is_string($cellFormat)) {
$tag = http_build_query($cell->getStyle()->getTagOptions(), null, ';');
$tag = http_build_query($cell->getStyle()->getTagOptions(), '', ';');
$cellFormat = '<'.$tag.'>%s</>';
}

Expand Down

0 comments on commit 71113af

Please sign in to comment.