Skip to content

Instantly share code, notes, and snippets.

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