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