Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
31 | protected function execute(InputInterface $input, OutputInterface $output) |
||
32 | { |
||
33 | $analyzerConfiguration = Analyzer\Factory::getPassesConfigurations(); |
||
|
|||
34 | $configuration = new Configuration([], $analyzerConfiguration); |
||
35 | |||
36 | $dumper = new YamlReferenceDumper(); |
||
37 | $output->writeln($dumper->dumpNode($configuration->getConfigTreeBuilder($analyzerConfiguration)->buildTree())); |
||
38 | } |
||
39 | } |
||
40 |
Very long variable names usually make code harder to read. It is therefore recommended not to make variable names too verbose.