We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4088c10 commit 0a4d6f3Copy full SHA for 0a4d6f3
2 files changed
src/Database/Adapter.php
@@ -65,6 +65,10 @@ public function setAuthorization(Authorization $authorization): self
65
return $this;
66
}
67
68
+ public function getAuthorization(): Authorization
69
+ {
70
+ return $this->authorization;
71
+ }
72
/**
73
* @param string $key
74
* @param mixed $value
src/Database/Adapter/Pool.php
@@ -30,6 +30,7 @@ public function __construct(UtopiaPool $pool)
30
31
32
// Run setters in case the pooled adapter has its own config
33
+ $this->setAuthorization($resource->getAuthorization());
34
$this->setDatabase($resource->getDatabase());
35
$this->setNamespace($resource->getNamespace());
36
$this->setSharedTables($resource->getSharedTables());
0 commit comments