-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
Came from:
Symfony DI integeration:
services:
Prooph\EventSourcing\EventStoreIntegration\AggregateTranslator: null
# Metadata enrichers
Acme\Common\Infrastructure\Prooph\EventStore\IPAddressMetadataEnricher:
tags:
- { name: 'prooph_event_store.default.metadata_enricher' }
arguments:
- '@request_stack'
# Upcasters
Acme\Common\Infrastructure\Prooph\EventStore\Upcaster: ~
Prooph\EventStore\Plugin\UpcastingPlugin:
arguments: ['@Acme\Common\Infrastructure\Prooph\EventStore\Upcaster']
tags:
- { name: 'prooph_event_store.default.plugin' }The Upcaster implementation:
<?php
namespace Acme\Common\Infrastructure\Prooph\EventStore;
use Prooph\Common\Messaging\Message;
use Prooph\EventStore\Upcasting\SingleEventUpcaster;
final class Upcaster extends SingleEventUpcaster
{
public function upcast(Message $message): array
{
dd($message);
}
protected function canUpcast(Message $message): bool
{
dd(__METHOD__);
}
protected function doUpcast(Message $message): array
{
dd(__METHOD__);
}
}Using the class already provided by Prooph:
VedranVukoje
Metadata
Metadata
Assignees
Labels
No labels