| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | final class InitCommand extends AbstractCommand |
||
| 24 | { |
||
| 25 | protected static $defaultName = 'migrations:init'; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritdoc} |
||
| 29 | */ |
||
| 30 | protected function defineDescription(): string |
||
| 31 | { |
||
| 32 | return 'Init Databse migrations (create migrations table)'; |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
| 45 | } |
||
| 46 | } |
||
| 47 |