| 1 | <?php |
||
| 19 | class FunctionToken extends BaseToken |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * Evaluates the function on the stack. |
||
| 23 | * |
||
| 24 | * @param array $stack |
||
| 25 | * The stack of tokens in reverse polish (postfix) notation. |
||
| 26 | * |
||
| 27 | * @return \Fubhy\Math\Token\NumberToken |
||
| 28 | * The result as a NumberToken object. |
||
| 29 | */ |
||
| 30 | public function execute(&$stack) |
||
| 40 | } |
||
| 41 |