File tree 2 files changed +4
-10
lines changed
2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -249,17 +249,11 @@ This service provider will slightly modify the internal DatabaseReminderReposito
249
249
250
250
### Queues
251
251
252
- If you want to use MongoDB as your database backend, change the default queue driver in ` config/queue.php ` :
253
-
254
- ``` php
255
- 'default' => 'mongodb',
256
- ```
257
-
258
- And add the following connection:
252
+ If you want to use MongoDB as your database backend, change the the driver in ` config/queue.php ` :
259
253
260
254
``` php
261
255
'connections' => [
262
- 'mongodb ' => [
256
+ 'database ' => [
263
257
'driver' => 'mongodb',
264
258
'table' => 'jobs',
265
259
'queue' => 'default',
Original file line number Diff line number Diff line change @@ -39,8 +39,8 @@ protected function getEnvironmentSetUp($app)
39
39
$ app ['config ' ]->set ('auth.providers.users.model ' , 'User ' );
40
40
$ app ['config ' ]->set ('cache.driver ' , 'array ' );
41
41
42
- $ app ['config ' ]->set ('queue.default ' , 'mongodb ' );
43
- $ app ['config ' ]->set ('queue.connections.mongodb ' , [
42
+ $ app ['config ' ]->set ('queue.default ' , 'database ' );
43
+ $ app ['config ' ]->set ('queue.connections.database ' , [
44
44
'driver ' => 'mongodb ' ,
45
45
'table ' => 'jobs ' ,
46
46
'queue ' => 'default ' ,
You can’t perform that action at this time.
0 commit comments