for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EventSauce\EventSourcing\Integration\DecoratingMessages;
use EventSauce\EventSourcing\AggregateRootId;
use EventSauce\EventSourcing\Event;
use EventSauce\EventSourcing\PointInTime;
/**
* @codeCoverageIgnore
*/
class DummyDecoratedEvent implements Event
{
public function aggregateRootId(): AggregateRootId
}
public function eventVersion(): int
public function timeOfRecording(): PointInTime
public function toPayload(): array
public static function fromPayload(array $payload, AggregateRootId $aggregateRootId, PointInTime $timeOfRecording): Event