| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | class MigrationsStatusCommand extends StatusCommand |
||
| 23 | { |
||
| 24 | protected function configure() |
||
| 25 | { |
||
| 26 | parent::configure(); |
||
| 27 | |||
| 28 | $this |
||
| 29 | ->setName('mongodb:migrations:status') |
||
| 30 | ->addOption('dm', null, InputOption::VALUE_OPTIONAL, 'The document manager to use for this command.', 'default_document_manager') |
||
| 31 | ; |
||
| 32 | } |
||
| 33 | |||
| 34 | public function execute(InputInterface $input, OutputInterface $output) |
||
| 42 | } |
||
| 43 | } |
||
| 44 |