1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 10:34:04 +00:00

Apply fixes from StyleCI

This commit is contained in:
stancl 2020-04-10 19:05:17 +00:00 committed by StyleCI Bot
parent 87285cd6d0
commit 3500d2eb5e

View file

@ -58,7 +58,7 @@ return [
* However, by default, Redis is a not a durable data storage. It works well for ephemeral data
* like cache, but to hold critical data, it needs to be configured in a way that guarantees
* that data will be persisted permanently. Specifically, you want to enable both AOF and
* RDB. Read this here: https://tenancy.samuelstancl.me/docs/v2/storage-drivers/#redis
* RDB. Read this here: https://tenancy.samuelstancl.me/docs/v2/storage-drivers/#redis.
*/
'redis' => [
'driver' => Stancl\Tenancy\StorageDrivers\RedisStorageDriver::class,
@ -67,12 +67,12 @@ return [
],
/**
* Controller namespace used for routes in routes/tenant.php
* Controller namespace used for routes in routes/tenant.php.
*/
'tenant_route_namespace' => 'App\Http\Controllers',
/**
* Central domains (hostnames), e.g. domains which host landing pages, sign up pages, etc
* Central domains (hostnames), e.g. domains which host landing pages, sign up pages, etc.
*/
'exempt_domains' => [
// 'localhost',
@ -104,7 +104,7 @@ return [
/**
* Tenant database names are created like this:
* prefix + tenant_id + suffix
* prefix + tenant_id + suffix.
*/
'prefix' => 'tenant',
'suffix' => '',
@ -143,7 +143,7 @@ return [
/**
* Filesystem tenancy config. Used by FilesystemTenancyBootstrapper.
* https://tenancy.samuelstancl.me/docs/v2/filesystem-tenancy/
* https://tenancy.samuelstancl.me/docs/v2/filesystem-tenancy/.
*/
'filesystem' => [
/**