Last active
December 16, 2020 16:41
-
-
Save james2001/5158d2e3e091650c5c614692938c9431 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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