File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
tests/Integration/Support/Fixtures Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,6 @@ protected function resolve($name)
132
132
133
133
if (method_exists ($ this , $ createMethod )) {
134
134
return $ this ->{$ createMethod }($ config );
135
-
136
135
}
137
136
138
137
$ createMethod = 'create ' .Str::studly ($ driverName ).ucfirst ($ this ->driverKey );
Original file line number Diff line number Diff line change @@ -34,7 +34,8 @@ public function __construct($config)
34
34
};
35
35
}
36
36
37
- protected function createMysqlDatabaseConnectionDriver (array $ config ) {
37
+ protected function createMysqlDatabaseConnectionDriver (array $ config )
38
+ {
38
39
return new class ($ config )
39
40
{
40
41
public function __construct (public $ config )
@@ -86,7 +87,7 @@ public function getInstanceConfig($name)
86
87
case 'mysql_database-connection ' :
87
88
return [
88
89
'driver ' => 'mysql_database-connection ' ,
89
- 'mysql_database-connection-option ' => 'option-value '
90
+ 'mysql_database-connection-option ' => 'option-value ' ,
90
91
];
91
92
default :
92
93
return [];
You can’t perform that action at this time.
0 commit comments