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.