| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class RollbackDatabaseCommand extends BaseDatabaseCommand |
||
| 16 | { |
||
| 17 | public function configure() |
||
| 18 | { |
||
| 19 | $this |
||
| 20 | ->setName('rollback') |
||
| 21 | ->setDescription('Rollback last migration 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) |
||
| 36 | } |
||
| 37 | } |
||
| 38 |