Skip to content

Instantly share code, notes, and snippets.

@dgafka
Last active January 16, 2022 17:09
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/aae268e21a79f53b5d25c49c621a05fe to your computer and use it in GitHub Desktop.
Save dgafka/aae268e21a79f53b5d25c49c621a05fe to your computer and use it in GitHub Desktop.
microservices-integration-in-php-03.php
<?php
class OrderServiceReceiver
{
#[Distributed]
#[CommandHandler("placeOrder")]
public function placeOrder(PlaceOrderCommand $command): void
{
// do something with order
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment