| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 28 | { |
||
| 29 | $container = $this->getContainer(); |
||
| 30 | $task = new Task( |
||
| 31 | $container->get('doctrine.dbal.default_connection'), |
||
|
|
|||
| 32 | $container->getParameter('db_system_catalog_prefix') |
||
| 33 | ); |
||
| 34 | $task->getUnusedTableNames(new SymfonyStyle($input, $output)); |
||
| 35 | } |
||
| 37 |