Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
20 | public function __construct( |
||
21 | ConfigInterface $config, |
||
22 | Environment $env, |
||
23 | InputInterface $input, |
||
24 | OutputInterface $output |
||
25 | ) { |
||
26 | $this->config = $config; |
||
27 | $this->fileSystem = new FileSystem(); |
||
28 | $this->env = $env; |
||
29 | $this->locker = new Locker(); |
||
30 | $this->input = $input; |
||
31 | $this->output = $output; |
||
32 | } |
||
33 | |||
39 | } |