Completed
Push — master ( a3a7c9...543a8a )
by Richard
01:50
created
src/Parser/ValueResult.php 1 patch
Braces   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,10 +30,11 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.