Conditions | 2 |
Paths | 5 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 4 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
19 | protected function execute(InputInterface $input, OutputInterface $output) |
||
20 | { |
||
21 | try { |
||
22 | $this->prepareMigrationDirectory(); |
||
23 | |||
24 | $damiStatusCommand = new DamiStatusCommand($this->getName(), $this->getContainer()); |
||
25 | $damiStatusCommand->setApplication($this->getApplication()); |
||
26 | $damiStatusCommand->execute($input, $output); |
||
27 | } catch (\Exception $e) { |
||
28 | $output->writeln(sprintf("<error>%s</error>", $e->getMessage())); |
||
29 | } |
||
30 | } |
||
31 | } |
||
32 |