| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function run() |
||
| 16 | { |
||
| 17 | $instance = $this->findOrFail($this->space, $this->id); |
||
| 18 | |||
| 19 | if (!method_exists($instance, $this->method)) { |
||
| 20 | throw new Exception("Method $this->method not defined"); |
||
| 21 | } |
||
| 22 | |||
| 23 | $method = $this->method; |
||
| 24 | |||
| 25 | return [ |
||
| 26 | 'result' => $instance->$method(), |
||
| 27 | ]; |
||
| 28 | } |
||
| 29 | } |
||
| 30 |