Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
20 | protected function configure() |
||
21 | { |
||
22 | $this->setName("create:module") |
||
23 | ->setDescription("Cria as classe de Command e CommandHandler") |
||
24 | ->addArgument("nome", InputArgument::REQUIRED, "Nome do Command Handler") |
||
25 | ->addArgument("diretorio", InputArgument::REQUIRED, "Local onde será criado o Command handler") |
||
26 | ->addArgument("nomeModule", InputArgument::REQUIRED, "Nome do módulo"); |
||
27 | } |
||
45 | } |