@@ -28,7 +28,7 @@ |
||
| 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 | } |
@@ -41,7 +41,7 @@ |
||
| 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 | |