Para ejecutar el procedimiento necesitas acceder al service container desde el comando; tendrias que tener algo como esto
Código PHP:
Ver originalprotected function execute(InputInterface $input, OutputInterface $output)
{
$stmt = $this->getContainer()->get('doctrine')->getConnection();
$stmt->prepare('CALL contando()');
$stmt->execute();
}