File tree 1 file changed +15
-9
lines changed
1 file changed +15
-9
lines changed Original file line number Diff line number Diff line change @@ -38,15 +38,21 @@ public function __construct(
38
38
string $ password ,
39
39
AbstractPlatform $ platform
40
40
) {
41
- $ this ->client = new Client (
42
- [
43
- 'host ' => $ params ['host ' ] ?? 'localhost ' ,
44
- 'port ' => $ params ['port ' ] ?? 8123 ,
45
- 'username ' => $ user ,
46
- 'password ' => $ password ,
47
- ],
48
- array_merge (['database ' => $ params ['dbname ' ] ?? 'default ' ], $ params ['driverOptions ' ] ?? [])
49
- );
41
+ $ connectParams = [
42
+ 'host ' => $ params ['host ' ] ?? 'localhost ' ,
43
+ 'port ' => $ params ['port ' ] ?? 8123 ,
44
+ 'username ' => $ user ,
45
+ 'password ' => $ password ,
46
+ ];
47
+
48
+ if (isset ($ params ['driverOptions ' ]['sslCA ' ])) {
49
+ $ connectParams ['sslCA ' ] = $ params ['driverOptions ' ]['sslCA ' ];
50
+ unset($ params ['driverOptions ' ]['sslCA ' ]);
51
+ }
52
+
53
+ $ clientParams = array_merge (['database ' => $ params ['dbname ' ] ?? 'default ' ], $ params ['driverOptions ' ] ?? []);
54
+
55
+ $ this ->client = new Client ($ connectParams , $ clientParams );
50
56
$ this ->platform = $ platform ;
51
57
}
52
58
You can’t perform that action at this time.
0 commit comments