Skip to content

Instantly share code, notes, and snippets.

@dgafka
Last active May 13, 2022 17:45
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/35652397839cbfec58ed065e08003e31 to your computer and use it in GitHub Desktop.
Save dgafka/35652397839cbfec58ed065e08003e31 to your computer and use it in GitHub Desktop.
asynchronous-messaging-06.php
<?php
$commandBus->sendWithRouting("place_order", '{"items":["milk","coffee"]}', "application/json")
(..)
class PlaceOrdernHandler
{
#[CommandHandler("place_order")]
public function placeOrder(PlaceOrder $payload) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment