| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class MigrateCommand extends Command |
||
| 15 | { |
||
| 16 | 1 | protected function configure() |
|
| 17 | { |
||
| 18 | 1 | parent::configure(); |
|
| 19 | 1 | $this->setName('migrations:migrate'); |
|
| 20 | 1 | } |
|
| 21 | |||
| 22 | /** |
||
| 23 | * @inheritDoc |
||
| 24 | * @noinspection PhpMissingParentCallCommonInspection |
||
| 25 | * @throws Exception |
||
| 26 | */ |
||
| 27 | 1 | protected function execute(InputInterface $input, OutputInterface $output) |
|
| 31 | } |
||
| 32 | } |
||
| 33 |