Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
34 | public function execute(InputInterface $input, OutputInterface $output) |
||
35 | { |
||
36 | CommandHelper::setApplicationDocumentManager($this->getApplication(), $input->getOption('dm')); |
||
37 | |||
38 | $configuration = $this->getMigrationConfiguration($input, $output); |
||
39 | CommandHelper::configureMigrations($this->getApplication()->getKernel()->getContainer(), $configuration); |
||
40 | |||
41 | parent::execute($input, $output); |
||
42 | } |
||
44 |