Skip to content

Instantly share code, notes, and snippets.

@dgafka
Created July 28, 2021 16:37
Show Gist options
  • Save dgafka/1e954d19162868317ac336dd24249549 to your computer and use it in GitHub Desktop.
Save dgafka/1e954d19162868317ac336dd24249549 to your computer and use it in GitHub Desktop.
<?php
class GetUserShippingAddressQuery
{
public function __construct(private string $userId) {}
public function getUserId(): string
{
return $this->userId;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment