File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/Illuminate/Concurrency Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ public function createSyncDriver(array $config)
71
71
*/
72
72
public function getDefaultInstance ()
73
73
{
74
- return $ this ->app ['config ' ]['concurrency.default ' ] ?? 'process ' ;
74
+ return $ this ->app ['config ' ]['concurrency.driver ' ] ?? 'process ' ;
75
75
}
76
76
77
77
/**
@@ -82,7 +82,7 @@ public function getDefaultInstance()
82
82
*/
83
83
public function setDefaultInstance ($ name )
84
84
{
85
- $ this ->app ['config ' ]['concurrency.default ' ] = $ name ;
85
+ $ this ->app ['config ' ]['concurrency.driver ' ] = $ name ;
86
86
}
87
87
88
88
/**
@@ -94,7 +94,7 @@ public function setDefaultInstance($name)
94
94
public function getInstanceConfig ($ name )
95
95
{
96
96
return $ this ->app ['config ' ]->get (
97
- 'concurrency.drivers . ' .$ name , ['driver ' => $ name ],
97
+ 'concurrency.driver . ' .$ name , ['driver ' => $ name ],
98
98
);
99
99
}
100
100
}
You can’t perform that action at this time.
0 commit comments