Conditions | 2 |
Paths | 1 |
Total Lines | 12 |
Lines | 12 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
23 | View Code Duplication | protected function executeConfigured(InputInterface $input, OutputInterface $output, Storeman $storeman): int |
|
24 | { |
||
25 | $storeman->restore( |
||
26 | $input->getOption('revision') ? (int)$input->getOption('revision') : null, |
||
27 | $input->getOption('vault'), |
||
28 | new SynchronizationProgressListener($output) |
||
29 | ); |
||
30 | |||
31 | $output->writeln(PHP_EOL . '<info>Done!</info>'); |
||
32 | |||
33 | return 0; |
||
34 | } |
||
35 | } |
||
36 |