Index: branches/5.3.x/core/kernel/Console/Command/AbstractCommand.php =================================================================== diff -u -N -r16282 -r16283 --- branches/5.3.x/core/kernel/Console/Command/AbstractCommand.php (.../AbstractCommand.php) (revision 16282) +++ branches/5.3.x/core/kernel/Console/Command/AbstractCommand.php (.../AbstractCommand.php) (revision 16283) @@ -1,6 +1,6 @@ initDependencies(); + + return array(); + } + + /** + * Return possible values for the named argument + * + * @param string $argumentName Argument name. + * @param CompletionContext $context Completion context. + * + * @return array + */ + public function completeArgumentValues($argumentName, CompletionContext $context) + { + $this->initDependencies(); + + return array(); + } + + /** * Perform additional validation of the input. * * @param InputInterface $input An InputInterface instance. @@ -85,6 +117,18 @@ // Don't use factory because of "classmap:rebuild" command. $this->io = new ConsoleIO($input, $output, $this->getHelperSet()); + + $this->initDependencies(); } + /** + * Initializes dependencies. + * + * @return void + */ + protected function initDependencies() + { + + } + }