Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
11 | final class ListCommand extends BaseMigrationCommand |
||
12 | { |
||
13 | protected static $defaultName = 'migrate/list'; |
||
14 | |||
15 | public function configure(): void |
||
16 | { |
||
17 | $this |
||
18 | ->setDescription('Print list of all migrations'); |
||
19 | } |
||
20 | |||
21 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
31 | } |
||
32 | } |
||
33 |