@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | /** |
253 | 253 | * Flush cell. |
254 | 254 | */ |
255 | - protected function flushCell(Worksheet $sheet, string $column, int|string $row, mixed &$cellContent, array $attributeArray): void |
|
255 | + protected function flushCell(Worksheet $sheet, string $column, int | string $row, mixed &$cellContent, array $attributeArray): void |
|
256 | 256 | { |
257 | 257 | if (is_string($cellContent)) { |
258 | 258 | // Simple String content |
@@ -301,7 +301,7 @@ discard block |
||
301 | 301 | /** @var array<int, array<int, string>> */ |
302 | 302 | private static array $falseTrueArray = []; |
303 | 303 | |
304 | - private function convertBoolean(?string $cellContent): bool|string |
|
304 | + private function convertBoolean(?string $cellContent): bool | string |
|
305 | 305 | { |
306 | 306 | if ($cellContent === '1') { |
307 | 307 | return true; |
@@ -887,7 +887,7 @@ discard block |
||
887 | 887 | * TODO : |
888 | 888 | * - Implement to other propertie, such as border |
889 | 889 | */ |
890 | - private function applyInlineStyle(Worksheet &$sheet, int $row, string $column, array $attributeArray): void |
|
890 | + private function applyInlineStyle(Worksheet & $sheet, int $row, string $column, array $attributeArray): void |
|
891 | 891 | { |
892 | 892 | if (!isset($attributeArray['style'])) { |
893 | 893 | return; |