1 | <?php |
||
21 | class MigrationCreateCommand extends AbstractCommand implements IAggregatorAwareCommand |
||
22 | { |
||
23 | |||
24 | /** |
||
25 | * Migration manager. |
||
26 | * |
||
27 | * @var MigrationManager |
||
28 | */ |
||
29 | private $_migrationManager; |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
1 ignored issue
–
show
|
|||
33 | */ |
||
1 ignored issue
–
show
|
|||
34 | protected function configure() |
||
56 | |||
57 | /** |
||
58 | * Prepare dependencies. |
||
59 | * |
||
60 | * @return void |
||
61 | */ |
||
62 | protected function prepareDependencies() |
||
70 | |||
71 | /** |
||
72 | * Return possible values for the named option |
||
73 | * |
||
74 | * @param string $optionName Option name. |
||
75 | * @param CompletionContext $context Completion context. |
||
76 | * |
||
77 | * @return array |
||
78 | */ |
||
79 | public function completeOptionValues($optionName, CompletionContext $context) |
||
89 | |||
90 | /** |
||
2 ignored issues
–
show
|
|||
91 | * {@inheritdoc} |
||
1 ignored issue
–
show
|
|||
92 | */ |
||
1 ignored issue
–
show
|
|||
93 | protected function execute(InputInterface $input, OutputInterface $output) |
||
102 | |||
103 | } |
||
104 |