From 48667cddce982233d4c48c8396316c7853d28522 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Tue, 22 Oct 2019 19:24:36 +0200 Subject: [PATCH] Default value true --- src/TenancyBootstrappers/FilesystemTenancyBootstrapper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TenancyBootstrappers/FilesystemTenancyBootstrapper.php b/src/TenancyBootstrappers/FilesystemTenancyBootstrapper.php index 1aa5b667..5d417f8b 100644 --- a/src/TenancyBootstrappers/FilesystemTenancyBootstrapper.php +++ b/src/TenancyBootstrappers/FilesystemTenancyBootstrapper.php @@ -38,7 +38,7 @@ class FilesystemTenancyBootstrapper implements TenancyBootstrapper $suffix = $this->app['config']['tenancy.filesystem.suffix_base'] . $tenant->id; // 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}"); }