Created
November 20, 2016 12:36
-
-
Save JavierCane/78511dfc22d31f8887db1f423d15bc43 to your computer and use it in GitHub Desktop.
Example of CQRS & DDD command handler. Entire repo: https://github.com/CodelyTV/cqrs-ddd-example/blob/master/src/Context/Meetup/Module/Video/Domain/Create/CreateVideoCommandHandler.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace CodelyTv\Context\Meetup\Module\Video\Domain\Create; | |
use CodelyTv\Context\Meetup\Module\Video\Domain\VideoId; | |
use CodelyTv\Context\Meetup\Module\Video\Domain\VideoTitle; | |
use CodelyTv\Context\Meetup\Module\Video\Domain\VideoUrl; | |
use CodelyTv\Shared\Domain\CourseId; | |
final class CreateVideoCommandHandler | |
{ | |
private $creator; | |
public function __construct(VideoCreator $creator) | |
{ | |
$this->creator = $creator; | |
} | |
public function __invoke(CreateVideoCommand $command) | |
{ | |
$id = new VideoId($command->id()); | |
$title = new VideoTitle($command->title()); | |
$url = new VideoUrl($command->url()); | |
$courseId = new CourseId($command->courseId()); | |
$this->creator->create($id, $title, $url, $courseId); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I guess another word for command would be request?