@@ -16,7 +16,7 @@ class MongodbConnectionFactory implements PsrConnectionFactory
16
16
* The config could be an array, string DSN or null. In case of null it will attempt to connect to Mongodb localhost with default credentials.
17
17
*
18
18
* $config = [
19
- * 'uri ' => 'mongodb://127.0.0.1/' - Mongodb connection string. see http://docs.mongodb.org/manual/reference/connection-string/
19
+ * 'dsn ' => 'mongodb://127.0.0.1/' - Mongodb connection string. see http://docs.mongodb.org/manual/reference/connection-string/
20
20
* 'dbname' => 'enqueue', - database name.
21
21
* 'collection_name' => 'enqueue' - collection name
22
22
* 'polling_interval' => '1000', - How often query for new messages (milliseconds)
@@ -39,7 +39,7 @@ public function __construct($config = 'mongodb:')
39
39
throw new \LogicException ('The config must be either an array of options, a DSN string or null ' );
40
40
}
41
41
$ config = array_replace ([
42
- 'uri ' => 'mongodb://127.0.0.1/ ' ,
42
+ 'dsn ' => 'mongodb://127.0.0.1/ ' ,
43
43
'dbname ' => 'enqueue ' ,
44
44
'collection_name ' => 'enqueue ' ,
45
45
], $ config );
@@ -49,7 +49,7 @@ public function __construct($config = 'mongodb:')
49
49
50
50
public function createContext ()
51
51
{
52
- $ client = new Client ($ this ->config ['uri ' ]);
52
+ $ client = new Client ($ this ->config ['dsn ' ]);
53
53
54
54
return new MongodbContext ($ client , $ this ->config );
55
55
}
@@ -75,10 +75,10 @@ public static function parseDsn($dsn)
75
75
}
76
76
if ('mongodb: ' === $ dsn ) {
77
77
return [
78
- 'uri ' => 'mongodb://127.0.0.1/ ' ,
78
+ 'dsn ' => 'mongodb://127.0.0.1/ ' ,
79
79
];
80
80
}
81
- $ config ['uri ' ] = $ dsn ;
81
+ $ config ['dsn ' ] = $ dsn ;
82
82
if (isset ($ parsedUrl ['path ' ]) && '/ ' !== $ parsedUrl ['path ' ]) {
83
83
$ pathParts = explode ('/ ' , $ parsedUrl ['path ' ]);
84
84
//DB name
0 commit comments