mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 11:44:04 +00:00
Apply fixes from StyleCI
This commit is contained in:
parent
87285cd6d0
commit
3500d2eb5e
1 changed files with 20 additions and 20 deletions
|
|
@ -58,7 +58,7 @@ return [
|
||||||
* However, by default, Redis is a not a durable data storage. It works well for ephemeral data
|
* 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
|
* 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
|
* 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' => [
|
'redis' => [
|
||||||
'driver' => Stancl\Tenancy\StorageDrivers\RedisStorageDriver::class,
|
'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',
|
'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' => [
|
'exempt_domains' => [
|
||||||
// 'localhost',
|
// 'localhost',
|
||||||
|
|
@ -104,7 +104,7 @@ return [
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tenant database names are created like this:
|
* Tenant database names are created like this:
|
||||||
* prefix + tenant_id + suffix
|
* prefix + tenant_id + suffix.
|
||||||
*/
|
*/
|
||||||
'prefix' => 'tenant',
|
'prefix' => 'tenant',
|
||||||
'suffix' => '',
|
'suffix' => '',
|
||||||
|
|
@ -143,7 +143,7 @@ return [
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filesystem tenancy config. Used by FilesystemTenancyBootstrapper.
|
* Filesystem tenancy config. Used by FilesystemTenancyBootstrapper.
|
||||||
* https://tenancy.samuelstancl.me/docs/v2/filesystem-tenancy/
|
* https://tenancy.samuelstancl.me/docs/v2/filesystem-tenancy/.
|
||||||
*/
|
*/
|
||||||
'filesystem' => [
|
'filesystem' => [
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue