Completed
Push — develop ( 1cf119...77b3c1 )
by
unknown
18:16
created
src/PhpSpreadsheet/Cell.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -870,7 +870,7 @@
 block discarded – undo
870 870
             do {
871 871
                 $characterValue = ($indexValue % 26) ?: 26;
872 872
                 $indexValue = ($indexValue - $characterValue) / 26;
873
-                $base26 = chr($characterValue + 64).($base26 ?: '');
873
+                $base26 = chr($characterValue + 64) . ($base26 ?: '');
874 874
             } while ($indexValue > 0);
875 875
             $indexCache[$columnIndex] = $base26;
876 876
         }
Please login to merge, or discard this patch.