Completed
Push — develop ( 03f96a...8c66af )
by Adrien
19:36
created
src/PhpSpreadsheet/Calculation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3115,7 +3115,7 @@
 block discarded – undo
3115 3115
         //    The guts of the lexical parser
3116 3116
         //    Loop through the formula extracting each operator and operand in turn
3117 3117
         while (true) {
3118
-            $opCharacter = $formula[$index];    //    Get the first character of the value at the current index position
3118
+            $opCharacter = $formula[$index]; //    Get the first character of the value at the current index position
3119 3119
             if ((isset(self::$comparisonOperators[$opCharacter])) && (strlen($formula) > $index) && (isset(self::$comparisonOperators[$formula[$index + 1]]))) {
3120 3120
                 $opCharacter .= $formula[++$index];
3121 3121
             }
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Shared/JAMA/EigenvalueDecomposition.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -778,7 +778,7 @@
 block discarded – undo
778 778
         }
779 779
     }
780 780
 
781
- // end hqr2
781
+    // end hqr2
782 782
 
783 783
     /**
784 784
      *    Constructor: Check for symmetry, then construct the eigenvalue decomposition.
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Shared/JAMA/SingularValueDecomposition.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -436,7 +436,7 @@
 block discarded – undo
436 436
         } // end while
437 437
     }
438 438
 
439
- // end constructor
439
+    // end constructor
440 440
 
441 441
     /**
442 442
      *    Return the left singular vectors.
Please login to merge, or discard this patch.