From 34f9ce33e29ed0727e97a6c4970ff812a2f6aa85 Mon Sep 17 00:00:00 2001 From: tknuppe Date: Wed, 11 Dec 2024 08:37:14 +0100 Subject: [PATCH] fixes typo (#1606) --- concepts/framework/messaging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts/framework/messaging.md b/concepts/framework/messaging.md index 80400547d..92ef54843 100644 --- a/concepts/framework/messaging.md +++ b/concepts/framework/messaging.md @@ -17,7 +17,7 @@ The [Message bus](https://symfony.com/doc/current/components/messenger.html#bus) ### Middleware -A [Middleware](https://symfony.com/doc/current/messenger.html#middleware) is called when the message bus dispatches messages. It defines what happens when you dispatch a message. For example, the `send\_message` middleware is responsible for sending your message to the configured [Transport](messaging#transport), and the `handle_message` middleware will actually call your handlers for the given message. You can add your own middleware by implementing the `MiddlewareInterface` and adding that middleware to the message bus through configuration. +A [Middleware](https://symfony.com/doc/current/messenger.html#middleware) is called when the message bus dispatches messages. It defines what happens when you dispatch a message. For example, the `send_message` middleware is responsible for sending your message to the configured [Transport](messaging#transport), and the `handle_message` middleware will actually call your handlers for the given message. You can add your own middleware by implementing the `MiddlewareInterface` and adding that middleware to the message bus through configuration. ### Handler