ddd-sample-symfony icon indicating copy to clipboard operation
ddd-sample-symfony copied to clipboard

DDD Real world sample application built over Symfony

Results 1 ddd-sample-symfony issues
Sort by recently updated
recently updated
newest added

In your controller: https://github.com/tyx/ddd-sample-symfony/blob/master/src/BookingEngine/UI/Controller/BookingController.php#L50 ``` $form->handleRequest($request); if (!$form->isValid()) { throw new HttpException(406, (string) new FormErrorsRepresentation($form->getErrors())); } try { // Send the message $this->bookingService->payBooking($command); ``` You use a service and pass...