Skip to content

Commit 40bdee9

Browse files
committed
Update section regarding plugin's global config.
1 parent a7c7e3e commit 40bdee9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/en/index.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ the ``Application::bootstrap()`` function::
3535
Configuration
3636
=============
3737

38-
The following configuration should be present in your **config/app.php**::
38+
The following configuration should be present in the config array of your **config/app.php**::
3939

40-
$config = [
40+
// ...
4141
'Queue' => [
4242
'default' => [
4343
// A DSN for your configured backend. default: null
@@ -53,8 +53,8 @@ The following configuration should be present in your **config/app.php**::
5353
// The name of an event listener class to associate with the worker
5454
'listener' => \App\Listener\WorkerListener::class,
5555
]
56-
]
57-
];
56+
],
57+
// ...
5858

5959
The ``Queue`` config key can contain one or more queue configurations. Each of
6060
these is used for interacting with a different queuing backend.

0 commit comments

Comments
 (0)