Skip to content

Commit b2a132c

Browse files
committed
[doc] upd doc.
1 parent 147f511 commit b2a132c

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

docs/bundle/config_reference.md

+3
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,9 @@ enqueue:
130130
lazy: true
131131
dbal:
132132

133+
# The Doctrine DBAL DSN. Other parameters are ignored if set
134+
dsn: ~
135+
133136
# Doctrine DBAL connection options. See http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html
134137
connection: ~
135138

docs/transport/dbal.md

+1-11
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,7 @@ $ composer require enqueue/dbal
2626
<?php
2727
use Enqueue\Dbal\DbalConnectionFactory;
2828

29-
$factory = new DbalConnectionFactory([
30-
'connection' => [
31-
'dbname' => 'mqdev',
32-
'user' => 'user',
33-
'password' => 'pass',
34-
'host' => 'localhost',
35-
'port' => 3306,
36-
'driver' => 'pdo_mysql',
37-
],
38-
'table_name' => 'enqueue',
39-
]);
29+
$factory = new DbalConnectionFactory('mysql://user:pass@localhost:3306/mqdev');
4030

4131
$psrContext = $factory->createContext();
4232
```

0 commit comments

Comments
 (0)