Skip to content

Instantly share code, notes, and snippets.

@dgafka
Last active 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/3003c3b824f1ac51b423593d298e4b4a to your computer and use it in GitHub Desktop.
Save dgafka/3003c3b824f1ac51b423593d298e4b4a to your computer and use it in GitHub Desktop.
outbox-pattern-02.php
<?php
class EventHandlerService
{
#[Asynchronous(Configuration::DATABASE_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