Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | class Command implements Action |
||
28 | { |
||
29 | /** |
||
30 | * Executes the action |
||
31 | * |
||
32 | * @param \CaptainHook\App\Config $config |
||
33 | * @param \CaptainHook\App\Console\IO $io |
||
34 | * @param \SebastianFeldmann\Git\Repository $repository |
||
35 | * @param \CaptainHook\App\Config\Action $action |
||
36 | * @return void |
||
37 | * @throws \Exception |
||
38 | */ |
||
39 | public function execute(Config $config, IO $io, Repository $repository, Config\Action $action): void |
||
43 |