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