@@ -11,9 +11,9 @@ |
||
| 11 | 11 | if (! isset($this->methods[$method])) { |
| 12 | 12 | throw new \BadMethodCallException($method.' does not exists as a Heyman condition'); |
| 13 | 13 | } |
| 14 | - $condition = $this->methods[$method]; |
|
| 14 | + $condition = $this->methods[$method]; |
|
| 15 | 15 | |
| 16 | - if (is_callable($condition)) { |
|
| 16 | + if (is_callable($condition)) { |
|
| 17 | 17 | return $condition(...$param); |
| 18 | 18 | } |
| 19 | 19 | |