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
199
199
Your own Sender
200
200
~~~~~~~~~~~~~~~
201
201
202
- Using the :class: `Symfony\\ Component\\ Messenger\\ Transport\\ Sender\\ SenderInterface `,
203
- you can create your own message sender.
204
202
Imagine that you already have an ``ImportantAction `` message going through the
205
203
message bus and being handled by a handler. Now, you also want to send this
206
204
message as an email.
207
205
208
- First, create your sender::
206
+ Using the :class: `Symfony\\ Component\\ Messenger\\ Transport\\ Sender\\ SenderInterface `,
207
+ you can create your own message sender::
209
208
210
209
namespace App\MessageSender;
211
210
@@ -257,9 +256,7 @@ application but you can't use an API and need to use a shared CSV file with new
257
256
orders.
258
257
259
258
You 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::
263
260
264
261
namespace App\MessageReceiver;
265
262
You can’t perform that action at this time.
0 commit comments