Skip to content

Commit

Permalink
fixes typo (#1606)
Browse files Browse the repository at this point in the history
  • Loading branch information
tknuppe authored Dec 11, 2024
1 parent 6884fa6 commit 34f9ce3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion concepts/framework/messaging.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 34f9ce3

Please sign in to comment.