| Conditions | 3 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 34 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 35 | { |
||
| 36 | $output->writeln('Start generating...'); |
||
| 37 | $generated = $this->getFacade()->generateDataProvider(); |
||
| 38 | |||
| 39 | if ($output->isVerbose()) { |
||
| 40 | foreach ($generated as $provider) { |
||
| 41 | $output->writeln($provider . ' generated'); |
||
| 42 | } |
||
| 43 | } |
||
| 44 | |||
| 45 | return 0; |
||
| 46 | } |
||
| 49 |