| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | public function execute(InputInterface $input, OutputInterface $output) |
||
| 28 | { |
||
| 29 | /** |
||
| 30 | * @var UnifiedArchive $archive |
||
| 31 | * @var string $file |
||
| 32 | */ |
||
| 33 | list($archive, $file) = $this->getArchiveAndFile($input, $output); |
||
| 34 | |||
| 35 | $archive->deleteFiles($file); |
||
| 36 | $output->writeln('<comment>- file "' . $file . '"</comment>'); |
||
| 37 | |||
| 38 | return 0; |
||
| 39 | } |
||
| 41 |