1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-15 18:14:03 +00:00

DB manager now doesn't depend on DB storage driver

This commit is contained in:
Samuel Štancl 2019-09-30 18:41:51 +02:00
parent c965ca5c93
commit ae6cf5c1ab
3 changed files with 18 additions and 21 deletions

View file

@ -10,6 +10,6 @@ trait CentralConnection
{
public function getConnectionName()
{
return app(DatabaseManager::class)->getCentralConnectionName();
return app(DatabaseStorageDriver::class)->getCentralConnectionName();
}
}