Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class MigrateDatabaseCommand extends BaseDatabaseCommand |
||
16 | { |
||
17 | public function configure() |
||
18 | { |
||
19 | $this |
||
20 | ->setName('migrate') |
||
21 | ->setDescription('Applies migrations to database'); |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @param InputInterface $input |
||
26 | * @param OutputInterface $output |
||
27 | * @return void |
||
28 | * @throws ConfigNotFoundException |
||
29 | * @throws NotSupportedDatabaseException |
||
30 | */ |
||
31 | public function execute(InputInterface $input, OutputInterface $output): void |
||
36 | } |
||
37 | } |
||
38 |