/**
  * @inheritdoc
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $types = $this->getTypes($input->getArgument('type'));
     $progress = new ProgressBar($output);
     $progress->setFormat('verbose');
     $this->setupProgressListeners($this->exporter->getDispatcher(), $progress, $output);
     foreach ($types as $type) {
         $this->exporter->exportFeed($type, $input->getOption('force'));
     }
 }