@@ -158,7 +158,7 @@ |
||
158 | 158 | /** |
159 | 159 | * @param AddressRange|array{0: int, 1: int, 2: int, 3: int}|array{0: int, 1: int}|string $fullRange |
160 | 160 | */ |
161 | - public function xtestSetRangeValidRange(string|array|AddressRange $fullRange, string $actualRange): void |
|
161 | + public function xtestSetRangeValidRange(string | array | AddressRange $fullRange, string $actualRange): void |
|
162 | 162 | { |
163 | 163 | $table = new Table(self::INITIAL_RANGE); |
164 | 164 |
@@ -63,7 +63,7 @@ |
||
63 | 63 | * or as an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 12]), |
64 | 64 | * or as an AddressRange object. |
65 | 65 | */ |
66 | - public static function validateCellRange(AddressRange|array|string $cellRange): string |
|
66 | + public static function validateCellRange(AddressRange | array | string $cellRange): string |
|
67 | 67 | { |
68 | 68 | if (is_string($cellRange)) { |
69 | 69 | [$worksheet, $addressRange] = Worksheet::extractSheetTitle($cellRange, true); |
@@ -320,7 +320,7 @@ |
||
320 | 320 | * |
321 | 321 | * @param int|numeric-string $columnIndex Column index (A = 1) |
322 | 322 | */ |
323 | - public static function stringFromColumnIndex(int|string $columnIndex): string |
|
323 | + public static function stringFromColumnIndex(int | string $columnIndex): string |
|
324 | 324 | { |
325 | 325 | static $indexCache = []; |
326 | 326 | static $lookupCache = ' ABCDEFGHIJKLMNOPQRSTUVWXYZ'; |