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