Events
Events are used to describe things that happened in the application. Since the events already happened, they are also immutable. In event sourcing, these are used to save and rebuild the current state. You can also listen on events to react and perform different actions.
Info
You can find out more about events in the library documentation. This documentation is limited to bundle integration.
Register events
A path must be specified for Event Sourcing to know where to look for your evets.
Tip
You can also define multiple paths by specifying an array.
Define events
Next, you need to create a class to serve as an event.
This class must get the Event
attribute with a unique event name.
namespace App\Domain\Hotel\Event;
use Patchlevel\EventSourcing\Attribute\Event;
use Patchlevel\EventSourcingBundle\Normalizer\UuidNormalizer;
use Symfony\Component\Uid\Uuid;
#[Event('hotel.created')]
final class HotelCreated
{
public function __construct(
#[UuidNormalizer]
public readonly Uuid $id,
public readonly string $hotelName
) {
}
}
Note
If you want to learn more about events, read the library documentation.
Note
You can read more about normalizer here.