File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -199,13 +199,12 @@ transport will be responsible for communicating with your message broker or 3rd
199199Your own Sender
200200~~~~~~~~~~~~~~~
201201
202- Using the :class: `Symfony\\ Component\\ Messenger\\ Transport\\ Sender\\ SenderInterface `,
203- you can create your own message sender.
204202Imagine that you already have an ``ImportantAction `` message going through the
205203message bus and being handled by a handler. Now, you also want to send this
206204message as an email.
207205
208- First, create your sender::
206+ Using the :class: `Symfony\\ Component\\ Messenger\\ Transport\\ Sender\\ SenderInterface `,
207+ you can create your own message sender::
209208
210209 namespace App\MessageSender;
211210
@@ -257,9 +256,7 @@ application but you can't use an API and need to use a shared CSV file with new
257256orders.
258257
259258You will read this CSV file and dispatch a ``NewOrder `` message. All you need to
260- do is to write your custom CSV receiver and Symfony will do the rest.
261-
262- First, create your receiver::
259+ do is to write your own CSV receiver::
263260
264261 namespace App\MessageReceiver;
265262
You can’t perform that action at this time.
0 commit comments