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