File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,24 +37,24 @@ Configuration
3737
3838The following configuration should be present in the config array of your **config/app.php **::
3939
40- // ...
41- 'Queue' => [
42- 'default' => [
43- // A DSN for your configured backend. default: null
44- 'url' => 'redis:',
45-
46- // The queue that will be used for sending messages. default: default
47- // This can be overriden when queuing or processing messages
48- 'queue' => 'default',
49-
50- // The name of a configured logger, default: null
51- 'logger' => 'stdout',
52-
53- // The name of an event listener class to associate with the worker
54- 'listener' => \App\Listener\WorkerListener::class,
55- ]
56- ],
57- // ...
40+ // ...
41+ 'Queue' => [
42+ 'default' => [
43+ // A DSN for your configured backend. default: null
44+ 'url' => 'redis:',
45+
46+ // The queue that will be used for sending messages. default: default
47+ // This can be overriden when queuing or processing messages
48+ 'queue' => 'default',
49+
50+ // The name of a configured logger, default: null
51+ 'logger' => 'stdout',
52+
53+ // The name of an event listener class to associate with the worker
54+ 'listener' => \App\Listener\WorkerListener::class,
55+ ]
56+ ],
57+ // ...
5858
5959The ``Queue `` config key can contain one or more queue configurations. Each of
6060these is used for interacting with a different queuing backend.
You can’t perform that action at this time.
0 commit comments