Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function execute(InputInterface $input, OutputInterface $output) |
||
26 | { |
||
27 | $updater = new Updater(); |
||
28 | $result = $updater->rollback(); |
||
29 | if (false === $result) { |
||
30 | $output->writeln('Something went wrong, rollback failed.'); |
||
31 | } else { |
||
32 | $output->writeln(sprintf('Successfully performed rollback.')); |
||
33 | } |
||
34 | } |
||
35 | } |