@@ -5260,7 +5260,7 @@ discard block |
||
5260 | 5260 | * |
5261 | 5261 | * @return array |
5262 | 5262 | */ |
5263 | - private function executeArrayComparison($operand1, $operand2, $operation, Stack &$stack, bool $recursingArrays) |
|
5263 | + private function executeArrayComparison($operand1, $operand2, $operation, Stack & $stack, bool $recursingArrays) |
|
5264 | 5264 | { |
5265 | 5265 | $result = []; |
5266 | 5266 | if (!is_array($operand2)) { |
@@ -5306,7 +5306,7 @@ discard block |
||
5306 | 5306 | * |
5307 | 5307 | * @return mixed |
5308 | 5308 | */ |
5309 | - private function executeBinaryComparisonOperation($operand1, $operand2, $operation, Stack &$stack, bool $recursingArrays = false) |
|
5309 | + private function executeBinaryComparisonOperation($operand1, $operand2, $operation, Stack & $stack, bool $recursingArrays = false) |
|
5310 | 5310 | { |
5311 | 5311 | // If we're dealing with matrix operations, we want a matrix result |
5312 | 5312 | if ((is_array($operand1)) || (is_array($operand2))) { |
@@ -883,7 +883,7 @@ |
||
883 | 883 | * @param int $row |
884 | 884 | * @param string $column |
885 | 885 | */ |
886 | - private function applyInlineStyle(Worksheet &$sheet, $row, $column, array $attributeArray): void |
|
886 | + private function applyInlineStyle(Worksheet & $sheet, $row, $column, array $attributeArray): void |
|
887 | 887 | { |
888 | 888 | if (!isset($attributeArray['style'])) { |
889 | 889 | return; |
@@ -2323,7 +2323,7 @@ |
||
2323 | 2323 | * @param int $rwB Row containing bottom right corner of object |
2324 | 2324 | * @param int $dyB Distance from bottom of cell |
2325 | 2325 | */ |
2326 | - private function writeObjPicture(int $colL, int $dxL, int $rwT, int|float $dyT, int $colR, int $dxR, int $rwB, int $dyB): void |
|
2326 | + private function writeObjPicture(int $colL, int $dxL, int $rwT, int | float $dyT, int $colR, int $dxR, int $rwB, int $dyB): void |
|
2327 | 2327 | { |
2328 | 2328 | $record = 0x005d; // Record identifier |
2329 | 2329 | $length = 0x003c; // Bytes to follow |