Changes required after merge from 1.x master, and reset phpstan baseline

This commit is contained in:
MarkBaker
2022-07-09 16:50:17 +02:00
parent 5de3c4ecdf
commit 08849a7eee
+1 -1
View File
@@ -554,7 +554,7 @@ class StringHelper
$sign = ($match[1] == '-') ? '-' : '+';
$wholePart = ($match[3] === '') ? '' : ($sign . $match[3]);
$fractionFormula = '=' . $wholePart . $sign . $match[4];
$operand = Calculation::getInstance()->_calculateFormulaValue($fractionFormula);
$operand = Calculation::getInstance()->calculateFormulaValue($fractionFormula);
return true;
}