@@ -30,10 +30,11 @@ |
||
| 30 | 30 | Tokenizer::DIVIDE => 'div' |
| 31 | 31 | ]; |
| 32 | 32 | |
| 33 | - if (is_numeric($newValue) && $funcs[$this->mode] === 'concat') |
|
| 34 | - $this->add($newValue); |
|
| 35 | - else |
|
| 36 | - $this->{$funcs[$this->mode]}($newValue); |
|
| 33 | + if (is_numeric($newValue) && $funcs[$this->mode] === 'concat') { |
|
| 34 | + $this->add($newValue); |
|
| 35 | + } else { |
|
| 36 | + $this->{$funcs[$this->mode]}($newValue); |
|
| 37 | + } |
|
| 37 | 38 | } |
| 38 | 39 | |
| 39 | 40 | public function arg($value) { |