Index: branches/5.3.x/core/kernel/Console/Command/BuildClassMapCommand.php =================================================================== diff -u -N -r16282 -r16283 --- branches/5.3.x/core/kernel/Console/Command/BuildClassMapCommand.php (.../BuildClassMapCommand.php) (revision 16282) +++ branches/5.3.x/core/kernel/Console/Command/BuildClassMapCommand.php (.../BuildClassMapCommand.php) (revision 16283) @@ -1,6 +1,6 @@ getModules(); } - return array(); + return $suggestions; } /** @@ -120,17 +121,4 @@ return array_diff($modules, array('In-Portal')); } - /** - * 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) - { - return array(); - } - }