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

Remove global config() call

This commit is contained in:
Samuel Štancl 2019-09-27 21:22:59 +02:00
parent 07e5ad76d0
commit aeafa24971

View file

@ -44,6 +44,6 @@ class RedisTenancyBootstrapper implements TenancyBootstrapper
protected function prefixedConnections()
{
return config('tenancy.redis.prefixed_connections');
return $this->app['config']['tenancy.redis.prefixed_connections'];
}
}