implement-cqrs-handlers
Handlers live in src/Adapter/{Domain}/CommandHandler/ and QueryHandler/. See CQRS/CONTEXT.md for conventions (#[AsCommandHandler]/#[AsQueryHandler] attributes, no cross-handler calls, return types).
1. Add handler
Add{Domain}Handler.php implementing Add{Domain}HandlerInterface:
- Inject
{Domain}Repository handle(Add{Domain}Command $command): {Domain}Id:- Construct the ObjectModel entity from command data
- For m
[Description truncada. Veja o README completo no GitHub.]