aboutsummaryrefslogtreecommitdiff
path: root/src/NXP/Classes/Calculator.php
diff options
context:
space:
mode:
authorBruce Wells <brucekwells@gmail.com>2020-06-04 18:43:16 +0300
committerBruce Wells <brucekwells@gmail.com>2020-09-16 04:14:44 +0300
commita0e0f405a9ffa11482e53a87eed95d962b8839f6 (patch)
tree55ef6ebce4cdcb53bfe7cc142ef40f90756d9b6c /src/NXP/Classes/Calculator.php
parent333a52e9aa64272b0011e108714c93c0f1e0d7db (diff)
Variable fixes (#67)
* Reproduce if throws UnknownOperatorException * Fix variable detection * Adding IncorrectNumberOfFunctionParametersException * Removing tabs * Better exception message text
Diffstat (limited to 'src/NXP/Classes/Calculator.php')
-rw-r--r--src/NXP/Classes/Calculator.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/NXP/Classes/Calculator.php b/src/NXP/Classes/Calculator.php
index 94c6933..bcb4b4e 100644
--- a/src/NXP/Classes/Calculator.php
+++ b/src/NXP/Classes/Calculator.php
@@ -77,7 +77,7 @@ class Calculator
}
$result = array_pop($stack);
if ($result === null || !empty($stack)) {
- throw new IncorrectExpressionException();
+ throw new IncorrectExpressionException('Stack must be empty');
}
return $result->value;
}