Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
33 | public function install(IOInterface $io) |
||
34 | { |
||
35 | foreach ($this->mappingReader as $mapping) { |
||
36 | if (file_exists($mapping->getDestination())) { |
||
37 | continue; |
||
38 | } |
||
39 | |||
40 | $this->installFile($mapping); |
||
41 | |||
42 | $io->write( |
||
43 | sprintf( |
||
44 | '<info>Installed:</info> %s', |
||
45 | $mapping->getRelativeDestination() |
||
46 | ) |
||
70 |