diff options
author | Bruce Wells <brucekwells@gmail.com> | 2019-01-12 07:48:43 +0300 |
---|---|---|
committer | Bruce Wells <brucekwells@gmail.com> | 2019-01-12 07:56:39 +0300 |
commit | 44e2bb192eb1c847741894ef24c8fbe24fe2f15a (patch) | |
tree | caac62a21a43b80221121f3838b8cd5487d27983 /src/NXP/Classes/Token/TokenFunction.php | |
parent | 145a0a136fc41dc59a78637a8e84f1c8952ecc31 (diff) |
Fixed function parameter order
Corrected $places default value for addFunction to match TokenFactory
Added function order test and put expected order first in assertEquals
If else blocks in calculator
Updated docs
Diffstat (limited to 'src/NXP/Classes/Token/TokenFunction.php')
-rw-r--r-- | src/NXP/Classes/Token/TokenFunction.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/NXP/Classes/Token/TokenFunction.php b/src/NXP/Classes/Token/TokenFunction.php index b2866c3..04eae30 100644 --- a/src/NXP/Classes/Token/TokenFunction.php +++ b/src/NXP/Classes/Token/TokenFunction.php @@ -32,9 +32,9 @@ class TokenFunction extends AbstractContainerToken implements InterfaceFunction $args = []; list($places, $function) = $this->value; for ($i = 0; $i < $places; $i++) { - array_push($args, array_pop($stack)->getValue()); + $args[] = array_pop($stack)->getValue(); } - $result = call_user_func_array($function, $args); + $result = call_user_func_array($function, array_reverse($args)); return new TokenNumber($result); } |