Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
30 | 1 | protected function execute(InputInterface $input, OutputInterface $output) |
|
31 | { |
||
32 | 1 | $generator = new NodeGenerator(new PhpGenerator()); |
|
33 | |||
34 | 1 | $output->writeln('<info>Generated code:</info>'); |
|
35 | 1 | $output->writeln($generator->generateByJson($input->getArgument('query'))); |
|
36 | |||
37 | 1 | return 0; |
|
38 | } |
||
39 | } |
||
40 |