| Total Complexity | 6 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class ManifestCommand extends Command |
||
| 15 | { |
||
| 16 | protected static $defaultName = 'api:manifest'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * |
||
| 20 | */ |
||
| 21 | protected function configure() |
||
| 22 | { |
||
| 23 | $this |
||
| 24 | ->setDescription('Removes unnecessary files from the recorder') |
||
| 25 | ->addArgument('dir') |
||
| 26 | ; |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param InputInterface $input |
||
| 31 | * @param OutputInterface $output |
||
| 32 | * |
||
| 33 | * @return int|void|null |
||
| 34 | */ |
||
| 35 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 52 | } |
||
| 53 | } |
||
| 56 |