We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62092cb commit 227c004Copy full SHA for 227c004
1 file changed
lib/Phpfastcache/Drivers/Mongodb/Config.php
@@ -65,6 +65,11 @@ class Config extends ConfigurationOption
65
*/
66
protected $options = [];
67
68
+ /**
69
+ * @var array
70
+ */
71
+ protected $driverOptions = [];
72
+
73
/**
74
* @return string
75
@@ -227,4 +232,22 @@ public function setOptions(array $options): self
227
232
$this->options = $options;
228
233
return $this;
229
234
}
235
236
237
+ * @return array
238
239
+ public function getDriverOptions(): array
240
+ {
241
+ return $this->driverOptions;
242
+ }
243
244
245
+ * @param array $driverOptions
246
+ * @return self
247
248
+ public function setDriverOptions(array $driverOptions): self
249
250
+ $this->driverOptions = $driverOptions;
251
+ return $this;
252
230
253
0 commit comments