Passed
Push — master ( b2d572...23b95e )
by Adrien
24:13 queued 11:27
created
tests/PhpSpreadsheetTests/Worksheet/Table/TableTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Worksheet/Validations.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Cell/Coordinate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -320,7 +320,7 @@
 block discarded – undo
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';
Please login to merge, or discard this patch.