Skip to content

Commit 1fbb878

Browse files
authored
Merge pull request #75 from amayer5125/docs-indentation
Fix Documentation Code Example Indentation
2 parents 5204cab + 6af2ea2 commit 1fbb878

1 file changed

Lines changed: 18 additions & 18 deletions

File tree

docs/en/index.rst

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -37,24 +37,24 @@ Configuration
3737

3838
The 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

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)