Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
34 | protected function execute(InputInterface $input, OutputInterface $output) |
||
35 | { |
||
36 | $nome = $input->getArgument("nome"); |
||
37 | $diretorio = $input->getArgument("diretorio"); |
||
38 | $moduleName = $input->getArgument("nomeModule"); |
||
39 | |||
40 | $module = new Module($moduleName, $diretorio); |
||
41 | \Saci\Console\Domain\Entity\Command::create($nome, $module); |
||
42 | |||
43 | $output->writeln("Command Handler {$nome} foi criado"); |
||
44 | } |
||
45 | } |