CQRS PHP

Command Query Responsibility Segregation PHP

Demo

Read Blog Post

Read Blog Post about CQRS in PHP and Ecotone

Code Example

Registering Command Handlers

Let's create PlaceOrder Command that will place an order in our system.

And Command Handler that will handle this Command

Registering Query Handlers

Let's define GetOrder Query that will find our placed order.

And Query Handlerthat will handle this query

Running The Example

Last updated

Was this helpful?