setName('shell') ->setDescription($this->trans('commands.shell.description')) ->setHelp($this->trans('commands.shell.help')); } /** * {@inheritdoc} */ protected function execute(InputInterface $input, OutputInterface $output) { $config = new Configuration; $shell = new Shell($config); $shell->run(); } }