Skip to Content
Domain-Driven Design in PHP
book

Domain-Driven Design in PHP

by Keyvan Akbary, Carlos Buenosvinos, Christian Soronellas
June 2017
Intermediate to advanced
394 pages
8h 52m
English
Packt Publishing
Content preview from Domain-Driven Design in PHP

Arggg, So Many Dependencies!

Is it normal that I have to create so many dependencies by hand? No. It is common to use a Dependency Injection component or a Service Container with such capabilities. Again, Symfony comes to the rescue, however, you can also check PHP-DI 4.

Let's see the resulting code in Listing 14 after applying Symfony Service Container component to our application:

class IdeaController extends ContainerAwareController{    public function rateAction()    {        $ideaId = $this->request->getParam('id');        $rating = $this->request->getParam('rating');        $useCase = $this->get('rate_idea_use_case');        $response = $useCase->execute(            new RateIdeaRequest($ideaId, $rating)        );        $this->redirect('/idea/' . $response->idea->getId());    }}

The controller ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

PHP Web Services

PHP Web Services

Lorna Jane Mitchell
PHP Microservices

PHP Microservices

Pablo Solar Vilariño, Carlos Pérez Sánchez

Publisher Resources

ISBN: 9781787284944