| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 25 | { |
||
| 26 | $placers = PlacerFactory::getInstance()->getPlacersNames(); |
||
| 27 | $output->write('Available words placers: '); |
||
| 28 | |||
| 29 | if (!count($placers)) { |
||
| 30 | $output->writeln('none'); |
||
| 31 | return; |
||
| 32 | } |
||
| 33 | |||
| 34 | |||
| 35 | $output->writeln(join(', ', $placers)); |
||
| 36 | } |
||
| 37 | } |
||
| 38 |