| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 1 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 52 | 28 | protected function execute(InputInterface $input, OutputInterface $output): int |
|
| 53 | { |
||
| 54 | $dumper = new \Symfony\Component\Config\Definition\Dumper\YamlReferenceDumper(); |
||
| 55 | $config = $dumper->dump( |
||
| 56 | new \Edyan\Neuralyzer\Configuration\ConfigDefinition() |
||
| 57 | ); |
||
| 58 | |||
| 59 | $output->writeLn($config); |
||
| 60 | |||
| 61 | return Command::SUCCESS; |
||
| 62 | 1 | } |
|
| 64 |