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