Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | protected function configure() |
||
15 | { |
||
16 | parent::configure(); |
||
17 | $this |
||
18 | ->setDescription('Extracts a file from archive to disk') |
||
19 | ->setHelp('Extracts a file from archive to disk.') |
||
20 | ->addArgument('destination', InputArgument::OPTIONAL, 'File destination (if set folder - extracts file to folder)') |
||
21 | ->addOption('overwrite', null, InputOption::VALUE_OPTIONAL, 'Overwrite file or not, if exists with the same name', false) |
||
22 | ; |
||
44 |