File tree 2 files changed +4
-11
lines changed
2 files changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,9 @@ enqueue:
130
130
lazy : true
131
131
dbal :
132
132
133
+ # The Doctrine DBAL DSN. Other parameters are ignored if set
134
+ dsn : ~
135
+
133
136
# Doctrine DBAL connection options. See http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html
134
137
connection : ~
135
138
Original file line number Diff line number Diff line change @@ -26,17 +26,7 @@ $ composer require enqueue/dbal
26
26
<?php
27
27
use Enqueue\Dbal\DbalConnectionFactory;
28
28
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');
40
30
41
31
$psrContext = $factory->createContext();
42
32
```
You can’t perform that action at this time.
0 commit comments