Skip to content

Instantly share code, notes, and snippets.

@james2001
Last active December 16, 2020 16:41
Show Gist options
  • Save james2001/5158d2e3e091650c5c614692938c9431 to your computer and use it in GitHub Desktop.
Save james2001/5158d2e3e091650c5c614692938c9431 to your computer and use it in GitHub Desktop.
class ExportCommand extends Command
{
protected static $defaultName = 'kiora:export';
private EntityManagerInterface $entityManager;
private SerializerInterface $serializer;
public function __construct(EntityManagerInterface $entityManager, SerializerInterface $serializer)
{
parent::__construct();
$this->entityManager = $entityManager;
$this->serializer = $serializer;
}
protected function configure()
{
$this->setDescription('Export all data')
->addArgument('entity', InputArgument::REQUIRED, 'the full class name')
;
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
$builder =$this->entityManager->createQueryBuilder();
$builder->select('entity')
->from($input->getArgument('entity'), 'entity')
;
$output->writeln($this->serializer->serialize($builder->getQuery()->getArrayResult(), 'csv'));
return 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment