Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class WebAppInstaller implements App |
||
12 | { |
||
13 | /** @var IOInterface */ |
||
14 | private IOInterface $io; |
||
15 | /** @var ComposerJson */ |
||
16 | private ComposerJson $manipulator; |
||
17 | |||
18 | 2 | public function __construct(IOInterface $io, ComposerJson $manipulator) |
|
22 | 2 | } |
|
23 | |||
24 | 1 | public function install(string $installationPath): void |
|
29 |