Completed
Push — master ( 9256d7...c78f45 )
by Klaus
06:31
created
src/Ast/ComparisonOperationNode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,6 +28,6 @@
 block discarded – undo
28 28
                 return $this->firstOperand->evaluate() <= $this->secondOperand->evaluate();
29 29
         }
30 30
 
31
-        throw new \RuntimeException('Undefined comparison operator: ' . $this->operator);
31
+        throw new \RuntimeException('Undefined comparison operator: '.$this->operator);
32 32
     }
33 33
 }
Please login to merge, or discard this patch.
src/Ast/MathOperationNode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,6 +25,6 @@
 block discarded – undo
25 25
                 return $this->firstOperand->evaluate() ** $this->secondOperand->evaluate();
26 26
         }
27 27
 
28
-        throw new \RuntimeException('Undefined operator: ' . $this->operator);
28
+        throw new \RuntimeException('Undefined operator: '.$this->operator);
29 29
     }
30 30
 }
Please login to merge, or discard this patch.