Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
33 | 2 | public function execute( |
|
34 | InputInterface $input, |
||
35 | OutputInterface $output |
||
36 | ) : void { |
||
37 | 2 | $version = $this->dependencyFactory |
|
38 | 2 | ->getRollup()->rollup(); |
|
39 | |||
40 | 2 | $output->writeln(sprintf( |
|
41 | 2 | 'Rolled up migrations to version <info>%s</info>', |
|
42 | 2 | $version->getVersion() |
|
43 | )); |
||
46 |