| Conditions | 2 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2.032 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | 6 | public function __invoke(): bool |
|
| 30 | { |
||
| 31 | return $this->artisanCommand->task($this->title(), function () { |
||
| 32 | 6 | if ($this->artisanCommand->getOutput()->isVerbose()) { |
|
| 33 | $this->artisanCommand->getOutput()->newLine(); |
||
| 34 | } |
||
| 35 | |||
| 36 | 6 | return call_user_func($this->function, ...$this->arguments); |
|
| 37 | 6 | }); |
|
| 38 | } |
||
| 39 | } |
||
| 40 |