| Total Complexity | 4 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class ZikulaExtensionInstallCommand extends Command |
||
| 13 | { |
||
| 14 | protected static $defaultName = 'zikula:extension:install'; |
||
| 15 | |||
| 16 | protected function configure() |
||
| 17 | { |
||
| 18 | $this |
||
| 19 | ->setDescription('Install a zikula module or theme.') |
||
| 20 | ->addArgument('arg1', InputArgument::OPTIONAL, 'Argument description') |
||
| 21 | ->addOption('option1', null, InputOption::VALUE_NONE, 'Option description') |
||
| 22 | ; |
||
| 23 | } |
||
| 24 | |||
| 25 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
| 41 | } |
||
| 42 | } |
||
| 43 |