/**
* Executes the actions
*
* @param InputInterface $input
* @param OutputInterface $output
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$force = true === $input->getOption('force');
foreach ($this->mapping as $className => $options) {
$metadata = $this->doctrineHelper->getClassMetadata($className);
$this->dumpSerializationFile($metadata, $options, $output, $force);
}
}