@@ -73,7 +73,7 @@ Add connection to `config/queue.php`:
7373### Optional Config
7474
7575Optionally add queue options to the config of a connection.
76- Every queue created for this connection, get's the properties.
76+ Every queue created for this connection, gets the properties.
7777
7878When you want to prioritize messages when they were delayed, then this is possible by adding extra options.
7979
@@ -100,13 +100,13 @@ When you want to prioritize messages when they were delayed, then this is possib
100100],
101101```
102102
103- When you want to publish messages against an exchange with routing-key's , then this is possible by adding extra options.
103+ When you want to publish messages against an exchange with routing-keys , then this is possible by adding extra options.
104104
105105- When the exchange is omitted, RabbitMQ will use the ` amq.direct ` exchange for the routing-key
106106- When routing-key is omitted the routing-key by default is the ` queue ` name.
107107- When using ` %s ` in the routing-key the queue_name will be substituted.
108108
109- > Note: when using exchange with routing-key, u probably create your queues with bindings yourself.
109+ > Note: when using an exchange with routing-key, you probably create your queues with bindings yourself.
110110
111111``` php
112112'connections' => [
@@ -139,7 +139,7 @@ by adding extra options.
139139- When routing-key is omitted, the routing-key by default the ` queue ` name is substituted with ` '.failed' ` .
140140- When using ` %s ` in the routing-key the queue_name will be substituted.
141141
142- > Note: When using failed_job exchange with routing-key, u probably need to create your exchange/queue with bindings
142+ > Note: When using failed_job exchange with routing-key, you probably need to create your exchange/queue with bindings
143143> yourself.
144144
145145``` php
@@ -171,7 +171,7 @@ Those messages probably won't respect Laravel's job payload schema.
171171The problem with these messages is that, Laravel workers won't be able to determine the actual job or class to execute.
172172
173173You can extend the build-in ` RabbitMQJob::class ` and within the queue connection config, you can define your own class.
174- When you specify an ` job ` key in the config, with your own class name, every message retrieved from the broker will get
174+ When you specify a ` job ` key in the config, with your own class name, every message retrieved from the broker will get
175175wrapped by your own class.
176176
177177An example for the config:
@@ -256,8 +256,8 @@ class RabbitMQJob extends BaseJob
256256
257257## Laravel Usage
258258
259- Once you completed the configuration you can use Laravel Queue API. If you used other queue drivers you do not need to
260- change anything else. If you do not know how to use Queue API, please refer to the official Laravel
259+ Once you completed the configuration you can use the Laravel Queue API. If you used other queue drivers you do not need to
260+ change anything else. If you do not know how to use the Queue API, please refer to the official Laravel
261261documentation: http://laravel.com/docs/queues
262262
263263## Laravel Horizon Usage
0 commit comments