setName("pdo:shell"); $this->setDescription("Launch an interactive PDO shell"); } protected function execute(InputInterface $input, OutputInterface $output) { $shell = new Shell\PdoShell($output); $shell->run(); return Command::SUCCESS; } }