Completed
Push — master ( a65034...5a3549 )
by Michal
03:28
created
src/Expressions/Subtraction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 
25 25
     protected $precidence = 4;
26 26
 
27
-    public function operate(\SimpleMath\Stack $stack, $variables=array()) {
27
+    public function operate(\SimpleMath\Stack $stack, $variables = array()) {
28 28
         $left = $stack->pop()->operate($stack, $variables);
29 29
         $right = $stack->pop();
30 30
         $right = ($right ? $right->operate($stack, $variables) : 0);
Please login to merge, or discard this patch.