Completed
Pull Request — develop (#199)
by
unknown
34:26
created
src/PhpSpreadsheet/Calculation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3849,7 +3849,7 @@
 block discarded – undo
3849 3849
      *
3850 3850
      * @return bool
3851 3851
      */
3852
-    private function executeBinaryComparisonOperation($cellID, $operand1, $operand2, $operation, Stack &$stack, $recursingArrays = false)
3852
+    private function executeBinaryComparisonOperation($cellID, $operand1, $operand2, $operation, Stack & $stack, $recursingArrays = false)
3853 3853
     {
3854 3854
         //    If we're dealing with matrix operations, we want a matrix result
3855 3855
         if ((is_array($operand1)) || (is_array($operand2))) {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Reader/Xlsx.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -869,7 +869,7 @@
 block discarded – undo
869 869
                                     foreach ($row->c as $c) {
870 870
                                         $r = (string) $c['r'];
871 871
                                         if ($r == '') {
872
-                                            $r = Cell::stringFromColumnIndex($rowIndex). $cIndex;
872
+                                            $r = Cell::stringFromColumnIndex($rowIndex) . $cIndex;
873 873
                                         }
874 874
                                         $cellDataType = (string) $c['t'];
875 875
                                         $value = null;
Please login to merge, or discard this patch.