Index: branches/5.3.x/core/kernel/Console/Command/AbstractCommand.php =================================================================== diff -u -N -r16252 -r16282 --- branches/5.3.x/core/kernel/Console/Command/AbstractCommand.php (.../AbstractCommand.php) (revision 16252) +++ branches/5.3.x/core/kernel/Console/Command/AbstractCommand.php (.../AbstractCommand.php) (revision 16282) @@ -1,6 +1,6 @@ getDefinition()->getArgumentRequiredCount() ) { throw new \RuntimeException('Not enough arguments.'); } + + // Don't use factory because of "classmap:rebuild" command. + $this->io = new ConsoleIO($input, $output, $this->getHelperSet()); } }