diff options
author | Javier Marín <javier@marinros.com> | 2020-07-26 05:27:26 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-26 05:27:26 +0300 |
commit | c1e07f254a4e952868be8240080661628aef8e69 (patch) | |
tree | b7ff2fa4c478a9ccc2fd0d17c64d54732f3391fb /src/NXP/Exception/MathExecutorException.php | |
parent | aa8ffe19f2eb6f194b3e6ee1aac4c2706659e6b9 (diff) |
Handler for not found variables (#68)
* Added handler to define not found variables
Added support for string variables
Fixed strings and ints comparison error
* Check if variables have scalar types (int, float, string and bool)
Better $onVarNotFound logic
Diffstat (limited to 'src/NXP/Exception/MathExecutorException.php')
-rw-r--r-- | src/NXP/Exception/MathExecutorException.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/NXP/Exception/MathExecutorException.php b/src/NXP/Exception/MathExecutorException.php index 0e3ea84..4405f85 100644 --- a/src/NXP/Exception/MathExecutorException.php +++ b/src/NXP/Exception/MathExecutorException.php @@ -14,6 +14,6 @@ namespace NXP\Exception; /** * @author Vitaliy Zhuk <zhuk2205@gmail.com> */ -abstract class MathExecutorException extends \Exception +class MathExecutorException extends \Exception { } |