Skip to content

Instantly share code, notes, and snippets.

@dgafka
Last active July 28, 2021 16:38
Show Gist options
  • Save dgafka/161657fa15b87171bc3e5c7c9dce3487 to your computer and use it in GitHub Desktop.
Save dgafka/161657fa15b87171bc3e5c7c9dce3487 to your computer and use it in GitHub Desktop.
<?php
class UserService
{
#[QueryHandler]
public function getPersonDetails(GetUserShippingAddressQuery $query)
{
$shippingAddress = // use query to get the shipping address;
return $shippingAddress;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment