mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 05:14:03 +00:00
Fix connection config template array_merge parameter order
This commit is contained in:
parent
85c7465aca
commit
c49e9b7e39
1 changed files with 1 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ class DatabaseConfig
|
||||||
$templateConnection = config("database.connections.{$template}");
|
$templateConnection = config("database.connections.{$template}");
|
||||||
|
|
||||||
return $this->manager()->makeConnectionConfig(
|
return $this->manager()->makeConnectionConfig(
|
||||||
array_merge($templateConnection, $this->tenantConfig()), $this->getName()
|
array_merge($this->tenantConfig(), $templateConnection), $this->getName()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue