| Total Complexity | 4 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class InfoCommand extends BaseArchiveCommand |
||
| 9 | { |
||
| 10 | protected static $defaultName = 'archive:info'; |
||
| 11 | |||
| 12 | protected function configure() |
||
| 13 | { |
||
| 14 | parent::configure(); |
||
| 15 | $this |
||
| 16 | ->setDescription('Renders archive info') |
||
| 17 | ->setHelp('Renders archive info.') |
||
| 18 | ; |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @throws \Exception |
||
| 23 | */ |
||
| 24 | public function execute(InputInterface $input, OutputInterface $output) |
||
| 38 | } |
||
| 39 | } |
||
| 40 |