Skip to content

Instantly share code, notes, and snippets.

@dgafka
Last active July 28, 2021 16:35
Show Gist options
  • Save dgafka/50744220503643f9a2b47d58082cea3b to your computer and use it in GitHub Desktop.
Save dgafka/50744220503643f9a2b47d58082cea3b to your computer and use it in GitHub Desktop.
<?php
class PersonController
{
public function __construct(private CommandBus $commandBus) {}
public function changeEmailAddress(Request $request)
{
$userId = $request->get('userId');
$email = $request->get('email');
$this->commandBus->send(new ChangeEmailAddress($userId, $email));
return new Response();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment