mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-19 19:16:32 +03:00
30 lines
928 B
PHP
30 lines
928 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Command;
|
|
|
|
use Prooph\EventStore\Stream;
|
|
use Prooph\EventStore\StreamName;
|
|
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
class CreateEventStreamCommand extends ContainerAwareCommand
|
|
{
|
|
protected function configure()
|
|
{
|
|
$this->setName('event-store:event-stream:create')
|
|
->setDescription('Create event_stream.')
|
|
->setHelp('This command creates the event_stream');
|
|
}
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output)
|
|
{
|
|
$eventStore = $this->getContainer()->get('prooph_event_store.app');
|
|
|
|
$eventStore->create(new Stream(new StreamName('event_stream'), new \ArrayIterator([])));
|
|
$output->writeln('<info>Event stream was created successfully.</info>');
|
|
}
|
|
}
|