Total Complexity | 4 |
Total Lines | 59 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class GrumPhpInstaller implements InstallerInterface |
||
14 | { |
||
15 | /** @var JsonFile */ |
||
16 | private $file; |
||
17 | |||
18 | /** @var IOInterface */ |
||
19 | private $io; |
||
20 | |||
21 | /** @var string */ |
||
22 | private $destination; |
||
23 | |||
24 | /** |
||
25 | * Constructor. |
||
26 | * |
||
27 | * @param IOInterface|null $io |
||
28 | * @param JsonFile $file |
||
29 | * @param string|null $destination |
||
30 | */ |
||
31 | public function __construct( |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * Install. |
||
44 | * |
||
45 | * @return void |
||
46 | */ |
||
47 | public function install() |
||
75 |