| Total Complexity | 2 | 
| Total Lines | 18 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 9 | class PrintCommand extends BaseFileCommand  | 
            ||
| 10 | { | 
            ||
| 11 | protected static $defaultName = 'file:print';  | 
            ||
| 12 | |||
| 13 | protected function configure()  | 
            ||
| 14 |     { | 
            ||
| 15 | parent::configure();  | 
            ||
| 16 | $this  | 
            ||
| 17 |             ->setDescription('Renders RAW archive file content') | 
            ||
| 18 |             ->setHelp('Renders RAW archive file content.') | 
            ||
| 19 | ;  | 
            ||
| 20 | }  | 
            ||
| 21 | |||
| 22 | public function execute(InputInterface $input, OutputInterface $output)  | 
            ||
| 27 | }  | 
            ||
| 28 | }  | 
            ||
| 29 |