Skip to content

Instantly share code, notes, and snippets.

@dgafka
Created September 30, 2022 07:01
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/c0c46340d48189ad2c13503a1ea19fd4 to your computer and use it in GitHub Desktop.
Save dgafka/c0c46340d48189ad2c13503a1ea19fd4 to your computer and use it in GitHub Desktop.
loosely-coupled-microservices-04.php
<?php
class NotificationService
{
#[Distributed]
#[EventHandler("order.was_placed")]
public function sendEmail(OrderWasPlaced $event): void
{
// send email
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment