| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class TestCommand extends BaseArchiveCommand |
||
| 10 | { |
||
| 11 | protected static $defaultName = 'files:test'; |
||
| 12 | |||
| 13 | protected function configure() |
||
| 14 | { |
||
| 15 | parent::configure(); |
||
| 16 | $this |
||
| 17 | ->setDescription('Tests archive contents') |
||
| 18 | ->setHelp('Tests archive contents.') |
||
| 19 | ->addArgument('filter', InputArgument::OPTIONAL, 'Files filter (as for fnmatch). If no * passed in filter, it will be added at the end of filter') |
||
| 20 | ; |
||
| 21 | } |
||
| 22 | |||
| 23 | public function execute(InputInterface $input, OutputInterface $output) |
||
| 36 | } |
||
| 37 | } |
||
| 38 |