From b53da1309d189540dc499168f17ec1670e52176f Mon Sep 17 00:00:00 2001 From: stancl Date: Fri, 27 Sep 2019 18:56:57 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Features/TenantConfig.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Features/TenantConfig.php b/src/Features/TenantConfig.php index 0829a1e4..647d9532 100644 --- a/src/Features/TenantConfig.php +++ b/src/Features/TenantConfig.php @@ -32,7 +32,7 @@ class TenantConfig implements Feature public function setTenantConfig(Tenant $tenant): void { - foreach($this->getStorageToConfigMap() as $storageKey => $configKey) { + foreach ($this->getStorageToConfigMap() as $storageKey => $configKey) { $this->app['config'][$configKey] = $tenant->get($storageKey); } } @@ -41,4 +41,4 @@ class TenantConfig implements Feature { return $this->app['config']['tenancy.storage_to_config_map'] ?? []; } -} \ No newline at end of file +}