| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 29 | { |
||
| 30 | $refactorPriorityQuery = $this->getRefactorPriorityQuery($input); |
||
| 31 | |||
| 32 | $data = $refactorPriorityQuery->execute($input->getArgument('limit')); |
||
| 33 | |||
| 34 | foreach ($data as $dataRow) { |
||
| 35 | $output->writeln(str_pad($dataRow['refactor_priority'], 5, ' ', STR_PAD_LEFT) . ' ' . $dataRow['path']); |
||
| 36 | } |
||
| 37 | } |
||
| 38 | |||
| 44 |