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 4ec27a5 commit fd523fdCopy full SHA for fd523fd
src/WorkerJS/PHPClient/Client.php
@@ -29,6 +29,8 @@ public function __construct($options){
29
30
if($this->options["store"]["type"] == "mysql"){
31
$this->taskStore = new MySQLTaskStore($this);
32
+ } else if($this->options["store"]["type"] == "postgres"){
33
+ $this->taskStore = new PostgresTaskStore($this);
34
} else {
35
throw new \Exception("Invalid Store choice. ");
36
}
0 commit comments