Skip to content

Instantly share code, notes, and snippets.

@dgafka
Created January 1, 2023 18:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dgafka/4c3973194ae51ea5527735942df065c8 to your computer and use it in GitHub Desktop.
Save dgafka/4c3973194ae51ea5527735942df065c8 to your computer and use it in GitHub Desktop.
outbox-pattern-03.php
<?php
class EventHandlerService
{
#[Asynchronous([Configuration::DATABASE_CHANNEL, Configuration::RABBITMQ_CHANNEL])]
#[EventHandler(endpointId:"notifyAboutNeworder")]
public function notifyAboutNewOrder(OrderWasPlaced $event) : void
{
// notify about new order
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment