Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
10 | class SyncMetadataCommand extends DoctrineCommand |
||
11 | { |
||
12 | /** @var string */ |
||
13 | protected static $defaultName = 'migrations:sync-metadata-storage'; |
||
14 | |||
15 | 1 | protected function configure() : void |
|
23 | 1 | The <info>%command.name%</info> command updates metadata storage the latest version. |
|
24 | |||
25 | <info>%command.full_name%</info> |
||
26 | EOT |
||
27 | ); |
||
28 | 1 | } |
|
29 | |||
30 | 1 | public function execute( |
|
41 |