Created
November 20, 2016 12:35
-
-
Save JavierCane/2aa4267e1de1e38176f77b1cf2cd9a67 to your computer and use it in GitHub Desktop.
Example of CQRS & DDD controller. Entire repo: https://github.com/CodelyTV/cqrs-ddd-example/blob/master/applications/api/src/Controller/VideoController.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\Api\Controller; | |
use CodelyTv\Context\Meetup\Module\Video\Domain\Create\CreateVideoCommand; | |
use CodelyTv\Infrastructure\Bus\Command\CommandBus; | |
use Symfony\Bundle\FrameworkBundle\Controller\Controller; | |
use Symfony\Component\HttpFoundation\Request; | |
use Symfony\Component\HttpFoundation\Response; | |
final class VideoController extends Controller | |
{ | |
private $bus; | |
public function __construct(CommandBus $bus) | |
{ | |
$this->bus = $bus; | |
} | |
public function createAction(string $id, Request $request) | |
{ | |
$command = new CreateVideoCommand( | |
$id, | |
$request->get('title'), | |
$request->get('url'), | |
$request->get('course_id') | |
); | |
$this->bus->dispatch($command); | |
return new Response('', Response::HTTP_CREATED); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment