Passed
Pull Request — master (#2308)
by Georgio
15:07
created
src/PhpSpreadsheet/Reader/Xls.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3752,7 +3752,7 @@
 block discarded – undo
3752 3752
                                 $fontIndex = $fmtRuns[$i - 1]['fontIndex'];
3753 3753
                                 // this has to do with that index 3 and 4  is omitted in all BIFF versions for some strange reason
3754 3754
                                 // check the OpenOffice documentation of the FONT record
3755
-                                if (array_key_exists($fontIndex,$this->objFonts) === false) {
3755
+                                if (array_key_exists($fontIndex, $this->objFonts) === false) {
3756 3756
                                     $fontIndex = array_key_last($this->objFonts);
3757 3757
                                 }
3758 3758
                                 $textRun->setFont(clone $this->objFonts[$fontIndex]);
Please login to merge, or discard this patch.