From 9cdc34290a84093b1c4640118289a7cf56d55125 Mon Sep 17 00:00:00 2001 From: NeonXP Date: Fri, 6 Sep 2013 05:42:09 +0400 Subject: Mass refactoring Some changes: + Added support of functions with multiple arguments + Added some default function (min, max, avg). just example of multiple arguments :) - Removed variables support (I think they pointless) ~ All tokens now in individual classes ~ Parsing based on regular expressions ~ Fix negative numbers ~ Fix grouping with brackets --- src/NXP/Exception/IncorrectBracketsException.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/NXP/Exception/IncorrectBracketsException.php (limited to 'src/NXP/Exception') diff --git a/src/NXP/Exception/IncorrectBracketsException.php b/src/NXP/Exception/IncorrectBracketsException.php new file mode 100644 index 0000000..68d67c6 --- /dev/null +++ b/src/NXP/Exception/IncorrectBracketsException.php @@ -0,0 +1,19 @@ + + */ +class IncorrectBracketsException extends \Exception +{ +} -- cgit v1.2.3