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

Default value true

This commit is contained in:
Samuel Štancl 2019-10-22 19:24:36 +02:00
parent 8fe7cfbf01
commit 48667cddce

View file

@ -38,7 +38,7 @@ class FilesystemTenancyBootstrapper implements TenancyBootstrapper
$suffix = $this->app['config']['tenancy.filesystem.suffix_base'] . $tenant->id; $suffix = $this->app['config']['tenancy.filesystem.suffix_base'] . $tenant->id;
// storage_path() // storage_path()
if ($this->app['config']['tenancy.filesystem.suffix_storage_path'] ?? false) { if ($this->app['config']['tenancy.filesystem.suffix_storage_path'] ?? true) {
$this->app->useStoragePath($this->originalPaths['storage'] . "/{$suffix}"); $this->app->useStoragePath($this->originalPaths['storage'] . "/{$suffix}");
} }