@@ -56,7 +56,7 @@ |
||
| 56 | 56 | $return = $f; |
| 57 | 57 | } else if(is_callable($f)) { |
| 58 | 58 | $return = call_user_func_array($f, $args); |
| 59 | - } else { |
|
| 59 | + } else { |
|
| 60 | 60 | throw new \RuntimeException('Expected a callable or an instance of Trampoline.'); |
| 61 | 61 | } |
| 62 | 62 | |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | if($this->recursing === false) { |
| 35 | 35 | $this->recursing = true; |
| 36 | 36 | |
| 37 | - while(! empty($this->arguments_pool)) { |
|
| 37 | + while(!empty($this->arguments_pool)) { |
|
| 38 | 38 | $result = call_user_func_array($this->f, array_shift($this->arguments_pool)); |
| 39 | 39 | } |
| 40 | 40 | |