Skip to content

Instantly share code, notes, and snippets.

@JavierCane
Created November 20, 2016 12:36
Show Gist options
  • Save JavierCane/78511dfc22d31f8887db1f423d15bc43 to your computer and use it in GitHub Desktop.
Save JavierCane/78511dfc22d31f8887db1f423d15bc43 to your computer and use it in GitHub Desktop.
<?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);
}
}
@gemmadlou
Copy link

I guess another word for command would be request?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment