Completed
Push — master ( 53f56c...89952d )
by Peter
02:20
created
src/Betfair.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         // all other subsystems, currently Betting and Account
29 29
         $class = 'PeterColes\\Betfair\\Api\\'.ucfirst($method);
30 30
         if (class_exists($class)) {
31
-            return call_user_func([new $class, 'execute'], $params);
31
+            return call_user_func([ new $class, 'execute' ], $params);
32 32
         }
33 33
     }
34 34
 }
Please login to merge, or discard this patch.
src/Api/Betting.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
         ];
42 42
 
43 43
         if (in_array($this->method, $lists) && empty($this->params[ 'filter' ])) {
44
-            $this->params['filter'] = new \stdClass;
44
+            $this->params[ 'filter' ] = new \stdClass;
45 45
         }
46 46
     }
47 47
 
Please login to merge, or discard this patch.