Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
29 | abstract class Builder |
||
30 | { |
||
31 | /** |
||
32 | * Creates a template that is responsible for the git hook template |
||
33 | * |
||
34 | * @param \Symfony\Component\Console\Input\InputInterface $input |
||
35 | * @param \CaptainHook\App\Config $config |
||
36 | * @param \SebastianFeldmann\Git\Repository $repository |
||
37 | * |
||
38 | * @return \CaptainHook\App\Hook\Template |
||
39 | */ |
||
40 | 5 | public static function build(InputInterface $input, Config $config, Repository $repository): Template |
|
57 |